1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-30 10:22:35 +01:00

merge the existing status bar with the standard FF status bar

This commit is contained in:
Doug Kearns
2007-09-22 14:29:56 +00:00
parent ba33ed5b13
commit 4ec9477c74
5 changed files with 83 additions and 73 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; }
}
));