Wrap the core return in parens to fix a confused JSLint.

This commit is contained in:
jeresig 2010-09-14 09:57:26 -04:00
parent 959c20f768
commit 492a2e2c53

View file

@ -826,6 +826,6 @@ function doScrollCheck() {
}
// Expose jQuery to the global object
return window.jQuery = window.$ = jQuery;
return (window.jQuery = window.$ = jQuery);
})();