1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-07 22:34:18 +01:00

fix broken :tabmove wrapping

This commit is contained in:
Doug Kearns
2007-08-17 16:20:48 +00:00
parent ce3a9b4526
commit dd14513fa2

View File

@@ -142,7 +142,7 @@ function Tabs() //{{{
if (spec === "")
spec = "$"; // if not specified, move to the last tab -> XXX: move to ex handling?
var index = indexFromSpec(spec, false); // XXX: really no wrap?
var index = indexFromSpec(spec, wrap);
getBrowser().moveTabTo(tab, index);
}