Wrap the core return in parens to fix a confused JSLint.
authorjeresig <jeresig@gmail.com>
Tue, 14 Sep 2010 13:57:26 +0000 (09:57 -0400)
committerjeresig <jeresig@gmail.com>
Tue, 14 Sep 2010 13:57:26 +0000 (09:57 -0400)
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);
 
 })();