Skip to content

Commit 0a6d8f5

Browse files
author
Eric Elliott
committed
Fix reference error.
1 parent 5a03e3a commit 0a6d8f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightningjs-bootstrap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ window.lightningjs || (function(window, parentLightningjs){
218218
})
219219
}
220220

221-
if (module && module.exports) {
221+
if (typeof module !== "undefined" && module.exports) {
222222
module.exports = innerLightningjs;
223223
}
224224
})(window, window.parent.lightningjs);

0 commit comments

Comments
 (0)