diff options
author | Jeffrey Tong <trigun0x2@gmail.com> | 2018-03-12 01:18:55 +0800 |
---|---|---|
committer | Jeffrey Tong <trigun0x2@gmail.com> | 2018-03-12 01:18:55 +0800 |
commit | 4f853bbd3c374df7c2991d5fdf91112f6f319bb3 (patch) | |
tree | cbe5303258cfdf6541db4bfad6e35f628f6e6a1e | |
parent | bda493dc9dc7436e5169a3344d8a72eb3c8d48d8 (diff) | |
download | dexon-wallet-4f853bbd3c374df7c2991d5fdf91112f6f319bb3.tar.gz dexon-wallet-4f853bbd3c374df7c2991d5fdf91112f6f319bb3.tar.zst dexon-wallet-4f853bbd3c374df7c2991d5fdf91112f6f319bb3.zip |
remove console log
-rw-r--r-- | app/scripts/lib/notification-manager.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/app/scripts/lib/notification-manager.js b/app/scripts/lib/notification-manager.js index 0087a1db..1fcb7cf6 100644 --- a/app/scripts/lib/notification-manager.js +++ b/app/scripts/lib/notification-manager.js @@ -45,7 +45,6 @@ class NotificationManager { _getPopup (cb) { this._getWindows((err, windows) => { if (err) throw err - console.log(windows); cb(null, this._getPopupIn(windows)) }) } @@ -64,7 +63,6 @@ class NotificationManager { _getPopupIn (windows) { return windows ? windows.find((win) => { // Returns notification popup - console.log(win); return (win && win.type === 'popup') }) : null } |