1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 12:52:28 +01:00

fix some for..in loops used to iterate over arrays

This commit is contained in:
Doug Kearns
2008-09-10 20:09:23 +00:00
parent ca6048ef05
commit 23ccb9a689
5 changed files with 14 additions and 14 deletions

View File

@@ -341,8 +341,8 @@ liberator.Completion = function () //{{{
macro: function (filter)
{
var macros = [];
var tmp = liberator.events.getMacros();
for (var item in tmp)
for (var item in liberator.events.getMacros())
macros.push([item, tmp[item]]);
return [0, liberator.completion.filter(macros, filter)];