define ["jquery", "underscore", "t5/core/dom"],
($, _, dom) ->
...
The jquery.coffee AMD module vs. the jquery-library is all about supporting
the above in your own modules. If you want jQuery, declare it as a
dependency of your module, and assign it to whatever name you like.
P.S. JavaScr
I noticed while using jQuery in 5.4 your required to alias the jQuery
namespace with jQuery. I'm assuming this is a result of the noConflict rule
within jquery.js on line 16. Is there any future plans to do away with the
noConflict rule enabling us to use $ for the namespace rather than jQuery?