1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

remove console log

This commit is contained in:
Jeffrey Tong 2018-03-11 10:18:55 -07:00
parent bda493dc9d
commit 4f853bbd3c

View File

@ -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
}