Fix module.exports

Looks like you did a mass find/replace of ‘module’ to ‘component’,
accidentally breaking module.exports
This commit is contained in:
Toby Zerner 2015-04-12 20:13:54 +09:30
parent 9e558c199c
commit 49e6e35f03

View file

@ -1139,5 +1139,5 @@ var m = (function app(window, undefined) {
return m
})(typeof window != "undefined" ? window : {});
if (typeof component != "undefined" && component !== null && component.exports) component.exports = m;
if (typeof module != "undefined" && module !== null && module.exports) module.exports = m;
else if (typeof define === "function" && define.amd) define(function() {return m});