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

Move macro storage to the storage module.

This commit is contained in:
Kris Maglione
2008-09-11 22:39:28 +00:00
parent fc36dcf01e
commit 5608c04d00
2 changed files with 19 additions and 27 deletions

View File

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