Merge pull request #548 from tobscure/module-exports-fix

Fix module.exports
This commit is contained in:
Leo Horie 2015-04-13 08:26:59 -04:00
commit 048c7d07cc

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});