Merge pull request #548 from tobscure/module-exports-fix
Fix module.exports
This commit is contained in:
commit
048c7d07cc
1 changed files with 1 additions and 1 deletions
|
|
@ -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});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue