Wrap the core return in parens to fix a confused JSLint.
This commit is contained in:
parent
959c20f768
commit
492a2e2c53
|
@ -826,6 +826,6 @@ function doScrollCheck() {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Expose jQuery to the global object
|
// Expose jQuery to the global object
|
||||||
return window.jQuery = window.$ = jQuery;
|
return (window.jQuery = window.$ = jQuery);
|
||||||
|
|
||||||
})();
|
})();
|
||||||
|
|
Loading…
Reference in a new issue