Skip to content
Permalink
Browse files
Wrap the core return in parens to fix a confused JSLint.
  • Loading branch information
jeresig committed Sep 14, 2010
1 parent 959c20f commit 492a2e2
Showing 1 changed file with 1 addition and 1 deletion.
@@ -826,6 +826,6 @@ function doScrollCheck() {
}

// Expose jQuery to the global object
return window.jQuery = window.$ = jQuery;
return (window.jQuery = window.$ = jQuery);

})();

0 comments on commit 492a2e2

Please sign in to comment.