1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-19 22:17:59 +01:00

Condense collapsed completion groups a bit.

--HG--
extra : rebase_source : 1c8ecadd775ab088fa726dff90646fa1345a818d
This commit is contained in:
Kris Maglione
2009-11-15 03:39:27 -05:00
parent 240482c951
commit ae3cf7b02c

View File

@@ -1768,6 +1768,10 @@ const ItemList = Class("ItemList", {
nodes.down.style.display = "block";
else
nodes.up.style.display = "block";
if (start == end) {
nodes.up.style.display = "none";
nodes.down.style.display = "none";
}
}, this);
this._divNodes.noCompletions.style.display = haveCompletions ? "none" : "block";