1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-06 09:54:12 +01:00

Kill tab bindings.

This commit is contained in:
Kris Maglione
2010-12-17 00:46:26 -05:00
parent 2b254ecc6b
commit a73ee765d8
8 changed files with 41 additions and 112 deletions

View File

@@ -214,11 +214,6 @@ const StatusLine = Module("statusline", {
return;
}
// update the ordinal which is used for numbered tabs
if (options.get("guioptions").has("n", "N"))
for (let [i, tab] in Iterator(tabs.visibleTabs))
tab.setAttribute("ordinal", i + 1);
this.widgets.tabcount.value = "[" + (tabs.index(null, true) + 1) + "/" + tabs.visibleTabs.length + "]";
}
},