From 5ef4c9f79529b8e197ded9d00b2804fb3b2374a5 Mon Sep 17 00:00:00 2001 From: Piro / SHIMODA Hiroshi Date: Fri, 3 Feb 2012 05:59:32 +0900 Subject: [PATCH] don't reset position of thumbnail container inserted by informational tab --- modules/browser.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/browser.js b/modules/browser.js index 935133dd..3b367023 100644 --- a/modules/browser.js +++ b/modules/browser.js @@ -958,6 +958,8 @@ TreeStyleTabBrowser.prototype = { // reset order at first! nodes.forEach(function(aNode, aIndex) { + if (aNode.getAttribute('class') == 'informationaltab-thumbnail-container') + return; aNode.setAttribute('ordinal', aIndex); }, this);