1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00

Limit to one popup, re-focus on additional notifications.

This commit is contained in:
Dan Finlay 2016-08-22 17:18:14 -07:00
parent 642e84da6c
commit 361e26fad7

View File

@ -21,6 +21,16 @@ function createMsgNotification (state) {
}
function showNotification() {
extension.windows.getAll({}, (windows) => {
let popupWindow = windows.find((win) => {
return win.type === 'popup'
})
if (popupWindow) {
return extension.windows.update(popupWindow.id, { focused: true })
}
extension.windows.create({
url: 'notification.html',
type: 'detached_panel',
@ -28,5 +38,6 @@ function showNotification() {
width: 360,
height: 500,
})
})
}