1
0
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:
Kris Maglione
2008-10-05 04:06:14 +00:00
parent 55df63ee81
commit e5bce7c63c
2 changed files with 4 additions and 3 deletions

View File

@@ -59,6 +59,7 @@ liberator.Completion = function () //{{{
.getService(Components.interfaces.nsIIOService); .getService(Components.interfaces.nsIIOService);
function getIcon(uri) function getIcon(uri)
{ {
return;
try try
{ {
let img = faviconService.getFaviconImageForPage(ioService.newURI(uri, null, null)); let img = faviconService.getFaviconImageForPage(ioService.newURI(uri, null, null));

View File

@@ -108,9 +108,9 @@ liberator.CommandLine = function () //{{{
var statusTimer = new liberator.util.Timer(50, 100, function () var statusTimer = new liberator.util.Timer(50, 100, function ()
liberator.statusline.updateProgress("match " + (completionIndex + 1) + " of " + completions.length)); liberator.statusline.updateProgress("match " + (completionIndex + 1) + " of " + completions.length));
var autocompleteTimer = new liberator.util.Timer(50, 100, function (command) { var autocompleteTimer = new liberator.util.Timer(50, 100, function (command) {
var res = liberator.completion.ex(command); let res = liberator.completion.ex(command);
liberator.commandline.setCompletions(res[1], res[0]); liberator.commandline.setCompletions(res[1], res[0]);
}); });
// the containing box for the promptWidget and commandWidget // the containing box for the promptWidget and commandWidget
var commandlineWidget = document.getElementById("liberator-commandline"); var commandlineWidget = document.getElementById("liberator-commandline");