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) { _getPopupIn (windows) {
return windows ? windows.find((win) => { return windows ? windows.find((win) => {
return (win && win.type === 'popup' && return (win && win.type === 'popup')
win.height === height &&
win.width === width)
}) : null }) : null
} }

Loading…
Cancel
Save