mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-20 12:17:59 +01:00
Fix some "for each" iteration of arrays.
This commit is contained in:
@@ -164,7 +164,7 @@ function Hints() //{{{
|
||||
return [elem.value, false];
|
||||
else
|
||||
{
|
||||
for each (let option in options["hintinputs"].split(","))
|
||||
for (let [,option] in Iterator(options["hintinputs"].split(",")))
|
||||
{
|
||||
if (option == "value")
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user