mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 08:38:00 +01:00
Dont quote literal option args. Fix more/less completion arrows.
This commit is contained in:
@@ -1382,11 +1382,11 @@ function ItemList(id) //{{{
|
||||
d.appendChild(row);
|
||||
dom.replaceChild(d, nodes.items);
|
||||
nodes.items = d;
|
||||
nodes.up.style.display = (start == 0) && "none";
|
||||
nodes.down.style.display = (end == context.items.length) && "none";
|
||||
nodes.up.style.display = (start == 0) ? "none" : "block";
|
||||
nodes.down.style.display = (end == context.items.length) ? "none" : "block";
|
||||
});
|
||||
|
||||
divNodes.noCompletions.style.display = (off > 0) && "none";
|
||||
divNodes.noCompletions.style.display = (off > 0) ? "none" : "block";
|
||||
|
||||
completionElements = div.getElementsByClassName("hl-CompItem");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user