1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-06 03:14:12 +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

@@ -35,9 +35,9 @@ vimperator.help = function(section, easter) //{{{
}
if ((arguments[3] && arguments[3].inTab))// || !window.content.document.open)
openURLsInNewTab("", true);
vimperator.open("about:blank", vimperator.NEW_TAB);
else
openURLs("about:blank");
vimperator.open("about:blank");
/* commands = array where help information is located
* beg = string which is printed before the commmand/option/mapping name
@@ -214,7 +214,7 @@ vimperator.help = function(section, easter) //{{{
if (arguments[3] && arguments[3].recursive)
return false;
openURLs("about:blank");
vimperator.open("about:blank");
setTimeout(function () { vimperator.help(section, false, null, {recursive: true}); }, 250);
return;
}