-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Module support, don't leak to window #11
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
(function(window) { | ||
/* */ | ||
"format cjs"; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is it important / necessary to specify CommonJS format? I might just be unaware There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Technically you don't have to specify it directly, most tools will auto-detect or default to it, but, it's better to be explicit, also with this pull you're supporting CJS, but also allowing AMD and global export so this avoids any conflicts I guess. |
||
(function(global) { | ||
|
||
"use strict"; | ||
|
||
|
@@ -934,6 +936,11 @@ | |
return width; | ||
}; | ||
|
||
window.Sub = Sub; | ||
|
||
}(window)); | ||
if (typeof define === 'function' && define.amd) { | ||
define(Sub); | ||
} else if (typeof module !== 'undefined' && module.exports) { | ||
module.exports = Sub; | ||
} else { | ||
global.Sub = Sub; | ||
} | ||
}(this)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we remove this?