1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 10:08:00 +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

@@ -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");