From a9f743265a617253689219470f08ee510e3c8b32 Mon Sep 17 00:00:00 2001 From: Bill Kudo Date: Mon, 23 Apr 2018 21:00:43 +0900 Subject: [PATCH] Fixed a bug in move to window feature --- src/popup/popup.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/popup/popup.js b/src/popup/popup.js index 111a19f..671f0f4 100755 --- a/src/popup/popup.js +++ b/src/popup/popup.js @@ -524,9 +524,7 @@ function windowEntryDropped(e) { windowId: parseInt(destinationWindowId), index: -1 }); - if (destinationWindowId !== sourceWindow.getAttribute("data-window_id")) { - attachTab(sourceTabId, parseInt(destinationWindowId), -1); - } + attachTab(sourceTabId, parseInt(destinationWindowId), -1); } } }