fix#1098, fix typo on bookmarks.js

This commit is contained in:
oonuma ryouyu 2016-05-03 12:06:20 +09:00
parent d8bf4a4044
commit 85432c2bf2

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;