Permalink
3 comments
on commit
sign in to comment.
Browse files
Trim out the module wrappers during the build process. Follow-up to #…
…7011.
- Loading branch information
This comment has been minimized.
rwaldron repliedSep 12, 2010
Was the build process supposed to be updated to change:
var jQuery = (function() { ... to ... (function() {
and
return window.jQuery = window.$ = jQuery; ... to ... window.jQuery = window.$ = jQuery;
?
This comment has been minimized.
rwaldron repliedSep 12, 2010
sed 's/var jQuery = (f/(f/' |
sed 's/return window/window/' | \
This comment has been minimized.
jeresig repliedSep 12, 2010
No, it was fine leaving it as-is (works both standalone and part of the build process).