1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-29 03:02:26 +01:00

Completion of certain chrome:, resource:, and about: URLs.

This commit is contained in:
Kris Maglione
2010-12-14 23:05:41 -05:00
parent 50e47b9b2f
commit 0dcf1d8ffd
9 changed files with 118 additions and 41 deletions

View File

@@ -445,7 +445,7 @@ const Tabs = Module("tabs", {
else {
let index = (count - 1) % matches.length;
if (reverse)
index = matches.length - count;
index = matches.length - index - 1;
tabs.select(matches[index].id, false);
}
},