Skip to content

Commit 492a2e2

Browse files
committed
Wrap the core return in parens to fix a confused JSLint.
1 parent 959c20f commit 492a2e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -826,6 +826,6 @@ function doScrollCheck() {
826826
}
827827

828828
// Expose jQuery to the global object
829-
return window.jQuery = window.$ = jQuery;
829+
return (window.jQuery = window.$ = jQuery);
830830

831831
})();

0 commit comments

Comments
 (0)