Merge branch 'master' of github.com:piroor/treestyletab

This commit is contained in:
Piro / YUKI Hiroshi 2016-05-03 13:42:41 +09:00
commit 366e0094a4

View File

@ -476,7 +476,7 @@ PlacesUIUtils.openContainerNodeInTabs = function(aNode, ...aArgs) {
}; };
PlacesUIUtils.__treestyletab__openURINodesInTabs = PlacesUIUtils.openURINodesInTabs; PlacesUIUtils.__treestyletab__openURINodesInTabs = PlacesUIUtils.openURINodesInTabs;
PlacesUIUtils.openURINodesInTabs = function(aNode, ...aArgs) { PlacesUIUtils.openURINodesInTabs = function(aNodes, ...aArgs) {
try { try {
this.__treestyletab__openTabset_rawNodes = aNodes; this.__treestyletab__openTabset_rawNodes = aNodes;
this.__treestyletab__folderName = utils.treeBundle.getFormattedString( this.__treestyletab__folderName = utils.treeBundle.getFormattedString(
@ -485,7 +485,7 @@ PlacesUIUtils.openURINodesInTabs = function(aNode, ...aArgs) {
'openSelectedPlaces.history', 'openSelectedPlaces.history',
[aNodes[0].title, aNodes.length] [aNodes[0].title, aNodes.length]
); );
return this.__treestyletab__openURINodesInTabs.apply(this, [aNode].concat(aArgs)); return this.__treestyletab__openURINodesInTabs.apply(this, [aNodes].concat(aArgs));
} }
finally { finally {
delete this.__treestyletab__openTabset_rawNodes; delete this.__treestyletab__openTabset_rawNodes;