You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sending in true removes all jQuery variables from the global scope. This is a problem when loading jQuery plugins or even using jQuery instead of $ after the ssai pulse plugin is included on the page.
Take a look at this codpen. This shows an example without the ssai pulse plugin. Notice that both jQuery and $ work.
There is a problem with the way that jQuery is being handled and used with the ssai pulse plugin.
https://github.com/ooyala/html5-common/blob/master/js/utils/InitModules/InitOOJQuery.js.
Line 8:
$ = window.$.noConflict(true);
Sending in true removes all jQuery variables from the global scope. This is a problem when loading jQuery plugins or even using
jQuery
instead of$
after the ssai pulse plugin is included on the page.Take a look at this codpen. This shows an example without the ssai pulse plugin. Notice that both
jQuery
and$
work.Now take a look at this codepen. Only
$
works notjQuery
.The text was updated successfully, but these errors were encountered: