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

declare loop counter in InformationList#fill

This commit is contained in:
Doug Kearns
2007-06-27 11:22:53 +00:00
parent c102832e88
commit f43ad36110

View File

@@ -587,7 +587,7 @@ function InformationList(id, options) //{{{
list_offset = startindex; list_offset = startindex;
list_index = -1; 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); addItem(completions[i], false);
} }