1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 08:07:59 +01:00

Use correct variable name in :set pps=

This commit is contained in:
Conrad Irwin
2009-09-19 15:22:57 +01:00
parent a896c98434
commit 1c6a225e11

View File

@@ -180,11 +180,11 @@ function Tabs() //{{{
else if (opt == "window")
open = 2;
else if (opt == "resized")
resized = 2;
restriction = 2;
}
options.safeSetPref("browser.link.open_newwindow", open);
options.safeSetPref("browser.link.open_newwindow.restriction", resized);
options.safeSetPref("browser.link.open_newwindow.restriction", restriction);
return value;
},
completer: function (context) [