From db70b7f469a86d3581dd38ff0614c257dda1b88c Mon Sep 17 00:00:00 2001 From: Piro / SHIMODA Hiroshi Date: Thu, 9 Feb 2012 02:52:10 +0900 Subject: [PATCH] for horizontal tab bar, failed to reset z index --- modules/browser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/browser.js b/modules/browser.js index 902dda10..e78c4ef7 100644 --- a/modules/browser.js +++ b/modules/browser.js @@ -532,7 +532,7 @@ TreeStyleTabBrowser.prototype = { { let tab = tabs[i]; if (aStacked) - tab.style.zIndex = count * 1000 - index; + tab.style.zIndex = count * 1000 - i; else tab.style.zIndex = ''; }