1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 06:57:59 +01:00

Add missing semicolons.

This commit is contained in:
Doug Kearns
2009-06-02 16:56:28 +10:00
parent 95dffaf95a
commit 6d7b94daa6
17 changed files with 56 additions and 55 deletions

View File

@@ -472,7 +472,7 @@ function CommandLine() //{{{
}
// Fallthrough
case "full":
this.select(reverse ? this.UP : this.DOWN)
this.select(reverse ? this.UP : this.DOWN);
break;
}
@@ -1765,7 +1765,7 @@ function ItemList(id) //{{{
div.style.minWidth = "";
// FIXME: Belongs elsewhere.
commandline.updateOutputHeight(false);
setTimeout(function () { container.height -= commandline.getSpaceNeeded() }, 0)
setTimeout(function () { container.height -= commandline.getSpaceNeeded() }, 0);
}
function getCompletion(index) completionElements.snapshotItem(index - startIndex);
@@ -1847,7 +1847,7 @@ function ItemList(id) //{{{
return;
haveCompletions = true;
let root = nodes.root
let root = nodes.root;
let items = nodes.items;
let [start, end, waiting] = getRows(context);
@@ -1883,9 +1883,9 @@ function ItemList(id) //{{{
return;
nodes.up.style.opacity = (start == 0) ? "0" : "1";
if (end != context.items.length)
nodes.down.style.display = "block"
nodes.down.style.display = "block";
else
nodes.up.style.display = "block"
nodes.up.style.display = "block";
});
divNodes.noCompletions.style.display = haveCompletions ? "none" : "block";