From 4bfee29a3808d7ef41a217a70356e6fe696a1a05 Mon Sep 17 00:00:00 2001 From: piro Date: Fri, 17 Sep 2010 09:34:41 +0000 Subject: [PATCH] =?UTF-8?q?=E3=83=84=E3=83=BC=E3=83=AB=E3=83=90=E3=83=BC?= =?UTF-8?q?=E3=81=AE=E3=82=AB=E3=82=B9=E3=82=BF=E3=83=9E=E3=82=A4=E3=82=BA?= =?UTF-8?q?=E4=B8=AD=E3=81=AF=E3=82=BF=E3=83=96=E3=83=90=E3=83=BC=E3=81=AE?= =?UTF-8?q?=E7=A7=BB=E5=8B=95=E3=82=92=E3=81=A7=E3=81=8D=E3=81=AA=E3=81=8F?= =?UTF-8?q?=E3=81=99=E3=82=8B=E5=A4=89=E6=9B=B4=E3=81=8C=E6=A9=9F=E8=83=BD?= =?UTF-8?q?=E3=81=97=E3=81=A6=E3=81=84=E3=81=AA=E3=81=8B=E3=81=A3=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://www.cozmixng.org/repos/piro/treestyletab/trunk@7250 599a83e7-65a4-db11-8015-0010dcdd6dc2 --- content/treestyletab/treestyletab.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/treestyletab/treestyletab.js b/content/treestyletab/treestyletab.js index b6438c7f..1c6e521d 100644 --- a/content/treestyletab/treestyletab.js +++ b/content/treestyletab/treestyletab.js @@ -121,7 +121,8 @@ var TreeStyleTabService = { get isToolbarCustomizing() { - return window.gToolbox && gToolbox.customizing; + var toolbox = window.gToolbox || window.gNavToolbox; + return toolbox && toolbox.customizing; }, maxTabbarWidth : function TSTService_maxTabbarWidth(aWidth, aTabBrowser)