Wrap the core return in parens to fix a confused JSLint.
[jquery.git] / src / core.js
index d6ef236..0fec6e1 100644 (file)
@@ -826,6 +826,6 @@ function doScrollCheck() {
 }
 
 // Expose jQuery to the global object
-return window.jQuery = window.$ = jQuery;
+return (window.jQuery = window.$ = jQuery);
 
 })();