Fix module.exports
Looks like you did a mass find/replace of ‘module’ to ‘component’, accidentally breaking module.exports
This commit is contained in:
parent
9e558c199c
commit
49e6e35f03
1 changed files with 1 additions and 1 deletions
|
|
@ -1139,5 +1139,5 @@ var m = (function app(window, undefined) {
|
||||||
return m
|
return m
|
||||||
})(typeof window != "undefined" ? window : {});
|
})(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});
|
else if (typeof define === "function" && define.amd) define(function() {return m});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue