ausybenelux / Ocelot

Ocelot is a theming starter kit for drupal 7.
5 stars 2 forks source link

Easy $ sign in behaviors #210

Closed rob-bar closed 8 years ago

rob-bar commented 8 years ago

In base.js this should be added at the top: window.$ = jQuery;

rob-bar commented 8 years ago

This is due to line 5 of Drupal.js

This line calls noConflict method on jQuery, with that function the dollar sign is released from its duty to make it available for other js files/libs... but also not anymore available for us unless we do self invoking ano wrapping technique like we used to.

This self invoking wrapping technique is baked into browserify, so no luck there. This fix above is the simplest thing I could come up with for now.

Drupal object stays available.