Bug 1207491 - Part 8: Remove use of expression closure from browser/components/nsBrowserContentHandler.js. r=Gijs

--HG--
extra : commitid : 5CX2WdhD19B
extra : rebase_source : 133660c5783223baba434fa6261f9894799d8201
This commit is contained in:
Tooru Fujisawa 2015-09-23 18:36:21 +09:00
parent a80925cf2f
commit 098dfb76f1

View File

@ -832,7 +832,7 @@ nsDefaultCommandLineHandler.prototype = {
}
}
var URLlist = urilist.filter(shouldLoadURI).map(function (u) u.spec);
var URLlist = urilist.filter(shouldLoadURI).map(u => u.spec);
if (URLlist.length) {
openWindow(null, gBrowserContentHandler.chromeURL, "_blank",
"chrome,dialog=no,all" + gBrowserContentHandler.getFeatures(cmdLine),