git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
959c20f
)
Wrap the core return in parens to fix a confused JSLint.
author
jeresig
<jeresig@gmail.com>
Tue, 14 Sep 2010 13:57:26 +0000
(09:57 -0400)
committer
jeresig
<jeresig@gmail.com>
Tue, 14 Sep 2010 13:57:26 +0000
(09:57 -0400)
src/core.js
patch
|
blob
|
history
diff --git
a/src/core.js
b/src/core.js
index
d6ef236
..
0fec6e1
100644
(file)
--- 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);
})();