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

Settle stupid naming dispute.

This commit is contained in:
Kris Maglione
2010-12-07 01:13:22 -05:00
parent 175cd126b7
commit bf73483d42
5 changed files with 18 additions and 21 deletions

View File

@@ -432,7 +432,7 @@ const Tabs = Module("tabs", {
if (matches)
return tabs.select(this.allTabs[parseInt(matches[1], 10) - 1], false);
matches = array.first(tabs.allTabs, function (t) t.linkedBrowser.lastURI.spec === buffer);
matches = array.nth(tabs.allTabs, function (t) t.linkedBrowser.lastURI.spec === buffer, 0);
if (matches)
return tabs.select(matches, false);