Wednesday, 13 April 2016

angular - Using angularjs2 with jquery?

Most of the guides say that it is not a problem just download jquery and the typings file and then edit the typings file to remove the export $ part



The problem with that is that I need to export $ since the plugins I'm going to use expect jquery to be defined as $



How can I use jquery with angularjs2 with exporting the global $ jquery variable

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...