1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

removed check for width & height on multiple popup windows

This commit is contained in:
Jeffrey Tong 2018-03-07 14:19:27 -08:00
parent cad5f5f000
commit 40b1688c67

View File

@ -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
}