removed check for width & height on multiple popup windows

feature/default_network_editable
Jeffrey Tong 7 years ago
parent cad5f5f000
commit 40b1688c67
  1. 4
      app/scripts/lib/notification-manager.js

@ -60,9 +60,7 @@ class NotificationManager {
_getPopupIn (windows) {
return windows ? windows.find((win) => {
return (win && win.type === 'popup' &&
win.height === height &&
win.width === width)
return (win && win.type === 'popup')
}) : null
}

Loading…
Cancel
Save