Skip to content

Commit

Permalink
fix incompatibility with latest Multiple Tab Handler
Browse files Browse the repository at this point in the history
  • Loading branch information
gomita committed Jun 8, 2013
1 parent 4f39cd9 commit 8f40fb7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chrome/content/tabflick/tabflick.js
Expand Up @@ -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);
Expand Down

0 comments on commit 8f40fb7

Please sign in to comment.