1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 06:08:02 +01:00

merge the existing status bar with the standard FF status bar

This commit is contained in:
Doug Kearns
2007-09-22 14:07:58 +00:00
parent 6530f8f229
commit ee8ecc8a34
5 changed files with 84 additions and 74 deletions

View File

@@ -407,9 +407,9 @@ function Options() //{{{
"<li><b>m</b>: menubar</li>" +
"<li><b>T</b>: toolbar</li>" +
"<li><b>b</b>: bookmark bar</li>" +
"<li><b>s</b>: original Firefox statusbar</li></ul>",
"<li><b>s</b>: statusbar</li></ul>",
setter: function(value) { Options.setPref("guioptions", value); setGuiOptions(value); },
default_value: "",
default_value: "s",
validator: function (value) { if (/[^mTbs]/.test(value)) return false; else return true; }
}
));