mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 16:32:27 +01:00
*** empty log message ***
This commit is contained in:
@@ -59,6 +59,7 @@ liberator.Completion = function () //{{{
|
||||
.getService(Components.interfaces.nsIIOService);
|
||||
function getIcon(uri)
|
||||
{
|
||||
return;
|
||||
try
|
||||
{
|
||||
let img = faviconService.getFaviconImageForPage(ioService.newURI(uri, null, null));
|
||||
|
||||
@@ -108,9 +108,9 @@ liberator.CommandLine = function () //{{{
|
||||
var statusTimer = new liberator.util.Timer(50, 100, function ()
|
||||
liberator.statusline.updateProgress("match " + (completionIndex + 1) + " of " + completions.length));
|
||||
var autocompleteTimer = new liberator.util.Timer(50, 100, function (command) {
|
||||
var res = liberator.completion.ex(command);
|
||||
liberator.commandline.setCompletions(res[1], res[0]);
|
||||
});
|
||||
let res = liberator.completion.ex(command);
|
||||
liberator.commandline.setCompletions(res[1], res[0]);
|
||||
});
|
||||
|
||||
// the containing box for the promptWidget and commandWidget
|
||||
var commandlineWidget = document.getElementById("liberator-commandline");
|
||||
|
||||
Reference in New Issue
Block a user