aboutsummaryrefslogtreecommitdiffstats
path: root/src/core.js
diff options
context:
space:
mode:
authorAlex Sexton <AlexSexton@gmail.com>2011-01-23 21:19:33 -0600
committerAlex Sexton <AlexSexton@gmail.com>2011-01-23 21:19:33 -0600
commitc50b74372c398b0c85164ad01977c5118b55d418 (patch)
treec14f176556b158ab665336247d36a0016116048c /src/core.js
parent02ca45573b8428f16e3eddb41f8fc50867bbda1b (diff)
downloadjquery-c50b74372c398b0c85164ad01977c5118b55d418.tar.gz
jquery-c50b74372c398b0c85164ad01977c5118b55d418.zip
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
Diffstat (limited to 'src/core.js')
-rw-r--r--src/core.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.js b/src/core.js
index 520db45ed..92ebb13ef 100644
--- a/src/core.js
+++ b/src/core.js
@@ -1054,6 +1054,6 @@ function doScrollCheck() {
}
// Expose jQuery to the global object
-return (window.jQuery = window.$ = jQuery);
+return jQuery;
})();