タブが1つだけ開かれている状態から2つ目のタブを開いた時にタブバーの状態が更新されない問題に対処( http://piro.sakura.ne.jp/cgi-bin/bbs.cgi?2769 )
git-svn-id: http://www.cozmixng.org/repos/piro/treestyletab/trunk@7205 599a83e7-65a4-db11-8015-0010dcdd6dc2
This commit is contained in:
parent
2cf5432a88
commit
e7b9ee61e7
@ -2841,14 +2841,12 @@ TreeStyleTabBrowser.prototype = {
|
||||
*/
|
||||
var tab = aEvent.target;
|
||||
var b = this.browser;
|
||||
if (
|
||||
tab.localName == 'tab' &&
|
||||
b &&
|
||||
b._removingTabs &&
|
||||
b._removingTabs.indexOf(tab) > -1 &&
|
||||
b._endRemoveTab
|
||||
)
|
||||
b._endRemoveTab(tab);
|
||||
if (tab.localName == 'tab' && b) {
|
||||
if (tab.getAttribute('fadein') == 'true')
|
||||
b.tabContainer._handleNewTab(tab);
|
||||
else if (b._removingTabs.indexOf(tab) > -1)
|
||||
b._endRemoveTab(tab);
|
||||
}
|
||||
},
|
||||
|
||||
onDOMAttrModified : function TSTBrowser_onDOMAttrModified(aEvent)
|
||||
|
Loading…
Reference in New Issue
Block a user