From 52378d8a9f64d9800fe7453fbf60b7154c79e6e4 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Thu, 17 Sep 2009 13:58:19 -0400 Subject: [PATCH] Fix :tabdetach --- common/content/tabs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/tabs.js b/common/content/tabs.js index 1ad1b9eb..22d90613 100644 --- a/common/content/tabs.js +++ b/common/content/tabs.js @@ -590,7 +590,7 @@ function Tabs() //{{{ "Detach current tab to its own window", function () { - if (tabs.count == 1) + if (tabs.count == 1 && !userContext.ImADeveloper_IKnowWhatImDoing_LeaveMeTheFuckAlone) return void liberator.echoerr("Can't detach the last tab"); tabs.detachTab(null);