Fix indent

This commit is contained in:
YUKI Hiroshi 2016-08-26 19:24:21 +09:00
parent 877a65e29b
commit 531a47f52e

View File

@ -6572,14 +6572,14 @@ TreeStyleTabBrowser.prototype = inherit(TreeStyleTabWindow.prototype, {
if (newTabs.length) {
Promise.all(promisedDuplicatedTabs).then((function() {
log('moveTabsInternal: applying tree structure for new ' + newTabs.length + ' tabs');
this.applyTreeStructureToTabs(
newTabs,
treeStructure,
collapsedStates.map(function(aCollapsed) {
return !aCollapsed
})
);
log('moveTabsInternal: applying tree structure for new ' + newTabs.length + ' tabs');
this.applyTreeStructureToTabs(
newTabs,
treeStructure,
collapsedStates.map(function(aCollapsed) {
return !aCollapsed
})
);
}).bind(this));
}