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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user