From 8f40fb7de49f3125b8a43d7346c569ea73e20135 Mon Sep 17 00:00:00 2001 From: Gomita Date: Sat, 8 Jun 2013 22:46:44 +0900 Subject: [PATCH] fix incompatibility with latest Multiple Tab Handler --- chrome/content/tabflick/tabflick.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chrome/content/tabflick/tabflick.js b/chrome/content/tabflick/tabflick.js index f595341..b8c14dc 100644 --- a/chrome/content/tabflick/tabflick.js +++ b/chrome/content/tabflick/tabflick.js @@ -64,8 +64,8 @@ var TabFlick = { var funcBak = func; // #debug // don't stop propagation when selecting all tabs and dropping them func = func.replace( - "if (this.isDraggingAllTabs(draggedTab)) {aEvent.stopPropagation();}", - "" + "if (this.isDraggingAllTabs(draggedTab))", + "if (false)" ); TabFlick.assert(func != funcBak); // #debug eval("MultipleTabService.onTabbarDragEnd = " + func);