Skip to content

Commit b2db9a3

Browse files
committed
New build
1 parent cfe055a commit b2db9a3

File tree

4 files changed

+18
-12
lines changed

4 files changed

+18
-12
lines changed

dist/gyronorm.complete.js

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1476,19 +1476,22 @@ window.FULLTILT = FULLTILT;
14761476
*
14771477
* @author Doruk Eker <doruk@dorukeker.com>
14781478
* @copyright Doruk Eker <http://dorukeker.com>
1479-
* @version 2.0.5
1479+
* @version 2.0.6
14801480
* @license MIT License | http://opensource.org/licenses/MIT
14811481
*/
14821482

14831483
(function(root, factory) {
1484+
var e = {
1485+
GyroNorm: factory(),
1486+
};
14841487
if (typeof define === 'function' && define.amd) {
14851488
define(function() {
1486-
return (root.GyroNorm = factory());
1489+
return e;
14871490
});
14881491
} else if (typeof module === 'object' && module.exports) {
1489-
module.exports = (root.GyroNorm = factory());
1492+
module.exports = e;
14901493
} else {
1491-
root.GyroNorm = factory();
1494+
root.GyroNorm = e.GyroNorm;
14921495
}
14931496
}(this, function() {
14941497
/* Constants */

0 commit comments

Comments
 (0)