diff options
author | Kevin Serrano <kevgagser@gmail.com> | 2016-09-03 04:45:29 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-03 04:45:29 +0800 |
commit | bdc7fd7c6f37f2e8a1d8a9f100115962b3fb0e01 (patch) | |
tree | d46d3bb32f8454350ff36a6985ebfa921978ad2c | |
parent | 7583bbf937db20d23aa2497840f66c53d1a53cc6 (diff) | |
parent | 822198e0928bb522d19fbdba54184e88c26f1db5 (diff) | |
download | tangerine-wallet-browser-bdc7fd7c6f37f2e8a1d8a9f100115962b3fb0e01.tar tangerine-wallet-browser-bdc7fd7c6f37f2e8a1d8a9f100115962b3fb0e01.tar.gz tangerine-wallet-browser-bdc7fd7c6f37f2e8a1d8a9f100115962b3fb0e01.tar.bz2 tangerine-wallet-browser-bdc7fd7c6f37f2e8a1d8a9f100115962b3fb0e01.tar.lz tangerine-wallet-browser-bdc7fd7c6f37f2e8a1d8a9f100115962b3fb0e01.tar.xz tangerine-wallet-browser-bdc7fd7c6f37f2e8a1d8a9f100115962b3fb0e01.tar.zst tangerine-wallet-browser-bdc7fd7c6f37f2e8a1d8a9f100115962b3fb0e01.zip |
Merge pull request #607 from MetaMask/notif-fix2.10.2
notif - use standard err-first callback style
-rw-r--r-- | app/scripts/lib/notifications.js | 42 |
1 files changed, 24 insertions, 18 deletions
diff --git a/app/scripts/lib/notifications.js b/app/scripts/lib/notifications.js index df4fe73dd..4e3f7558c 100644 --- a/app/scripts/lib/notifications.js +++ b/app/scripts/lib/notifications.js @@ -9,20 +9,26 @@ module.exports = notifications window.METAMASK_NOTIFIER = notifications function show () { - getWindows((windows) => { + getPopup((err, popup) => { + if (err) throw err - if (windows.length > 0) { - const win = windows[0] - return extension.windows.update(win.id, { focused: true }) - } + if (popup) { + + // bring focus to existing popup + extension.windows.update(popup.id, { focused: true }) + + } else { - extension.windows.create({ - url: 'notification.html', - type: 'popup', - focused: true, - width: 360, - height: 500, - }) + // create new popup + extension.windows.create({ + url: 'notification.html', + type: 'popup', + focused: true, + width: 360, + height: 500, + }) + + } }) } @@ -38,19 +44,19 @@ function getWindows(cb) { } function getPopup(cb) { - getWindows((windows) => { - cb(getPopupIn(windows)) + getWindows((err, windows) => { + if (err) throw err + cb(null, getPopupIn(windows)) }) } function getPopupIn(windows) { - return windows ? windows.find((win) => { - return win.type === 'popup' - }) : null + return windows ? windows.find((win) => win.type === 'popup') : null } function closePopup() { - getPopup((popup) => { + getPopup((err, popup) => { + if (err) throw err if (!popup) return extension.windows.remove(popup.id, console.error) }) |