折り畳まれたタブをそのままpinTabすると見えないタブになってしまっていた
git-svn-id: http://www.cozmixng.org/repos/piro/treestyletab/trunk@6752 599a83e7-65a4-db11-8015-0010dcdd6dc2
This commit is contained in:
parent
c6869d8136
commit
0c8a2915e8
@ -203,17 +203,23 @@ TreeStyleTabBrowser.prototype = {
|
||||
onPinTab : function TSTBrowser_onPinTab(aTab)
|
||||
{
|
||||
var parentTab = this.getParentTab(aTab);
|
||||
|
||||
if (!parentTab)
|
||||
this.collapseExpandSubtree(aTab, false);
|
||||
|
||||
this.getChildTabs(aTab).reverse().forEach(
|
||||
parentTab ?
|
||||
function(aChildTab) {
|
||||
this.attachTabTo(aChildTab, parentTab, {
|
||||
dontExpand : true,
|
||||
dontMove : true
|
||||
dontExpand : true,
|
||||
dontMove : true
|
||||
});
|
||||
} :
|
||||
this.partTab,
|
||||
this);
|
||||
this.partTab(aTab);
|
||||
|
||||
this.collapseExpandTab(aTab, false);
|
||||
},
|
||||
|
||||
onUnpinTab : function TSTBrowser_onUnpinTab(aTab)
|
||||
|
Loading…
Reference in New Issue
Block a user