From cfc8da1577259c5ea5b84d9e9679d5b1dabedf94 Mon Sep 17 00:00:00 2001 From: Piro / YUKI Hiroshi Date: Sun, 23 Sep 2012 23:44:06 +0900 Subject: [PATCH] Failed to collect root tabs (regression, fix #375) --- modules/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/utils.js b/modules/utils.js index daa536af..23196145 100644 --- a/modules/utils.js +++ b/modules/utils.js @@ -2020,7 +2020,7 @@ var TreeStyleTabUtils = { get rootTabs() /* PUBLIC API */ { - return Array.slice(this.browser.mTabContainer.querySelectorAll('tab:not(['+this.kNEST+']), tab['+this.kNEST+'=""], tabs['+this.kNEST+'="0"]')); + return Array.slice(this.browser.mTabContainer.querySelectorAll('tab:not(['+this.kNEST+']), tab['+this.kNEST+'=""], tab['+this.kNEST+'="0"]')); }, get allRootTabs() /* PUBLIC API */