lint compliance

This commit is contained in:
ansuz
2017-08-17 15:13:05 +02:00
parent 290763d6c5
commit a125253cde

View File

@@ -121,10 +121,10 @@
}; };
if (typeof(module) !== 'undefined' && module.exports) { if (typeof(module) !== 'undefined' && module.exports) {
module.exports = Module; module.exports = Mod();
} else if ((typeof(define) !== 'undefined' && define !== null) && (define.amd !== null)) { } else if ((typeof(define) !== 'undefined' && define !== null) && (define.amd !== null)) {
define(['/api/config'], Mod); define(['/api/config'], Mod);
} else { } else {
window.Visible = Module; window.Visible = Mod();
} }
}()); }());