mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-02-19 02:25:48 +01:00
Fix some "for each" iteration of arrays.
This commit is contained in:
@@ -509,7 +509,7 @@ let (array = util.Array)
|
||||
catch (e) {}
|
||||
context.fork("others", 0, this, function (context) {
|
||||
context.title = ["Site"];
|
||||
context.completions = [[s, ""] for each (s in styles.sites)];
|
||||
context.completions = [[s, ""] for ([,s] in Iterator(styles.sites))];
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user