lint compliance

pull/1/head
ansuz 2017-08-17 15:13:05 +02:00
parent 290763d6c5
commit a125253cde
1 changed files with 2 additions and 2 deletions

View File

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