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

feature/default_network_editable
Dan Finlay 8 years ago
parent 642e84da6c
commit 361e26fad7
  1. 23
      app/scripts/lib/notifications.js

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

Loading…
Cancel
Save