From: jeresig Date: Tue, 14 Sep 2010 13:57:26 +0000 (-0400) Subject: Wrap the core return in parens to fix a confused JSLint. X-Git-Url: http://git.asbjorn.biz/?a=commitdiff_plain;ds=sidebyside;h=492a2e2c5360a193b867df53e157a32af65f3f7e;p=jquery.git Wrap the core return in parens to fix a confused JSLint. --- diff --git a/src/core.js b/src/core.js index d6ef236..0fec6e1 100644 --- a/src/core.js +++ b/src/core.js @@ -826,6 +826,6 @@ function doScrollCheck() { } // Expose jQuery to the global object -return window.jQuery = window.$ = jQuery; +return (window.jQuery = window.$ = jQuery); })();