From a125253cde7482edef8a00cb498baac776ecd0df Mon Sep 17 00:00:00 2001 From: ansuz Date: Thu, 17 Aug 2017 15:13:05 +0200 Subject: [PATCH] lint compliance --- www/common/notify.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/common/notify.js b/www/common/notify.js index 7ce087b63..7942b3446 100644 --- a/www/common/notify.js +++ b/www/common/notify.js @@ -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(); } }());