mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 09:48:00 +01:00
use let when declaring loop variables
This commit is contained in:
@@ -187,7 +187,7 @@ liberator.modes = (function () //{{{
|
||||
{
|
||||
var modes = this.all;
|
||||
|
||||
for (var i = 0; i < modes.length; i++)
|
||||
for (let i = 0; i < modes.length; i++)
|
||||
yield modes[i];
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user