mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-22 11:47:58 +01:00
declare loop counter in InformationList#fill
This commit is contained in:
@@ -587,7 +587,7 @@ function InformationList(id, options) //{{{
|
||||
list_offset = startindex;
|
||||
list_index = -1;
|
||||
|
||||
for(i = startindex; i < complength && i < startindex + max_items; i++)
|
||||
for (var i = startindex; i < complength && i < startindex + max_items; i++)
|
||||
{
|
||||
addItem(completions[i], false);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user