Moved jQuery global leak to end of file so accidental gEBCN overrides in prototype don't get caught up in confusion. Fixed tests to reference jQuery variable instead of $ (best practice). Fixes #8033
This commit is contained in:
parent
02ca45573b
commit
c50b74372c
9 changed files with 15 additions and 14 deletions
|
@ -1054,6 +1054,6 @@ function doScrollCheck() {
|
|||
}
|
||||
|
||||
// Expose jQuery to the global object
|
||||
return (window.jQuery = window.$ = jQuery);
|
||||
return jQuery;
|
||||
|
||||
})();
|
||||
|
|
|
@ -1 +1,2 @@
|
|||
window.jQuery = window.$ = jQuery;
|
||||
})(window);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue