1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 23:58:00 +01:00

fix link target of :ls URLs in the MOW

This commit is contained in:
Doug Kearns
2007-10-18 12:42:27 +00:00
parent 1b05ad305f
commit 4f1dacc7a2

View File

@@ -696,7 +696,7 @@ function CommandLine() //{{{
case "<LeftMouse>":
if (event.originalTarget.className == "hl-URL buffer-list")
{
vimperator.tabs.select(parseInt(event.originalTarget.parentNode.firstChild.textContent) - 1);
vimperator.tabs.select(parseInt(event.originalTarget.parentNode.parentNode.firstChild.textContent) - 1);
close_window = true;
break;
}