1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-30 08:22:27 +01:00

Fix scrolling the completion list up

This commit is contained in:
Kris Maglione
2008-11-28 09:07:41 +00:00
parent 082d9d12fa
commit 6f0ff1992e

View File

@@ -1422,7 +1422,7 @@ function ItemList(id) //{{{
{
do
var next = nodes[++i];
while ((!next || next.parentNode != root) && i < nodes.length);
while ((!next || next.parentNode != items) && i < nodes.length);
items.insertBefore(row, next);
}
else if (!display && row.parentNode == items)