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

openURLs -> vimperator.open(...)

Support for adding bookmark groups to QuickMarks
This commit is contained in:
Martin Stubenschrott
2007-07-27 18:49:08 +00:00
parent ae840402f1
commit bdc505a047
7 changed files with 103 additions and 82 deletions

View File

@@ -772,9 +772,9 @@ function InformationList(id, options) //{{{
var index = (widget.selectedIndex * 2) + 0;
var val = listcells[index].getAttribute("label");
if (val && event.button == 0 && event.type == "dblclick") // left double click
openURLs(val);
vimperator.open(val);
else if (val && event.button == 1) // middle click
openURLsInNewTab(val);
vimperator.open(val, vimperator.NEW_TAB);
else
return false;
}