1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 18:02:27 +01:00

Fix cpt= verifier

This commit is contained in:
Kris Maglione
2008-11-25 01:48:19 +00:00
parent ac2378110d
commit ce0542bf66
2 changed files with 4 additions and 4 deletions

View File

@@ -317,7 +317,7 @@ function CommandLine() //{{{
"charlist", "sfl",
{
completer: function completer(filter) [k for each (k in completion.urlCompleters)],
validator: function validator(value) value in completion.urlCompleters
validator: function validator(value) Array.every(value, function (v) v in completion.urlCompleters)
});
options.add(["history", "hi"],
@@ -1300,7 +1300,6 @@ function ItemList(id) //{{{
if (container.collapsed)
div.style.minWidth = document.getElementById("liberator-commandline").scrollWidth + "px";
minHeight = Math.max(minHeight, completionBody.getBoundingClientRect().bottom);
minHeight = 400;
container.height = minHeight;
div.style.minWidth = undefined;
// FIXME: Belongs elsewhere.