1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-11 17:25:46 +01:00

Fix stal=0 on FF36. Closes issue #37.

This commit is contained in:
Kris Maglione
2010-10-04 10:43:56 -04:00
parent 9fdf43d46e
commit 226e411420

View File

@@ -34,7 +34,9 @@ const Tabs = Module("tabs", {
config.tabStrip.collapsed = true;
this.tabStyle = styles.addSheet(true, "tab-strip-hiding", config.styleableChrome,
"", false, true)
(config.tabStrip.id ? "#" + config.tabStrip.id : ".tabbrowser-strip") +
"{ visibility: collapse; }",
false, true)
dactyl.commands["tabs.select"] = function (event) {
tabs.select(event.originalTarget.getAttribute("identifier"));
@@ -988,10 +990,8 @@ const Tabs = Module("tabs", {
setter: function (value) {
let tabStrip = config.tabStrip;
if (value == 0) {
tabs.tabStyle.css = "#" + tabStrip.id + " { visibility: collapse; }"
if (value == 0)
tabs.tabStyle.enabled = true;
}
else {
options.safeSetPref("browser.tabs.autoHide", value == 1,
"See 'showtabline' option.");