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

move array utility methods to util.Array

This commit is contained in:
Doug Kearns
2008-10-19 07:26:17 +00:00
parent ca28d52ed4
commit d14a32afa3
9 changed files with 52 additions and 63 deletions

View File

@@ -173,11 +173,7 @@ function AutoCommands() //{{{
return {
__iterator__: function ()
{
for (let i = 0; i < store.length; i++)
yield autoCmd[i];
},
__iterator__: function () util.Array.iterator(store),
add: function (events, regex, cmd)
{