1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 16:42:26 +01:00

Default to opening multiple URLs in windows instead of tabs when !has("tabs")

This commit is contained in:
Kris Maglione
2008-12-18 21:47:36 -05:00
parent f2f8cdbea3
commit 66bd21ec30

View File

@@ -1099,6 +1099,7 @@ const liberator = (function () //{{{
return open(urls, liberator.NEW_WINDOW);
let tab = getBrowser().addTab(url, null, null, postdata);
if (where == liberator.NEW_TAB)
getBrowser().selectedTab = tab;
break;
@@ -1124,8 +1125,6 @@ const liberator = (function () //{{{
for (let [i, url] in Iterator(urls))
{
open(url, where);
if (i == 0 && !liberator.has("tabs"))
break;
where = liberator.NEW_BACKGROUND_TAB;
}