mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-03-09 19:55:46 +01:00
Fix scrolling the completion list up
This commit is contained in:
@@ -1422,7 +1422,7 @@ function ItemList(id) //{{{
|
|||||||
{
|
{
|
||||||
do
|
do
|
||||||
var next = nodes[++i];
|
var next = nodes[++i];
|
||||||
while ((!next || next.parentNode != root) && i < nodes.length);
|
while ((!next || next.parentNode != items) && i < nodes.length);
|
||||||
items.insertBefore(row, next);
|
items.insertBefore(row, next);
|
||||||
}
|
}
|
||||||
else if (!display && row.parentNode == items)
|
else if (!display && row.parentNode == items)
|
||||||
|
|||||||
Reference in New Issue
Block a user