mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-24 08:12:29 +01:00
Fix scoping in events.js
This commit is contained in:
@@ -871,7 +871,7 @@ function Events() //{{{
|
||||
{
|
||||
noremap = !!noremap;
|
||||
|
||||
for (let i = 0; i < keys.length; i++)
|
||||
for (var i = 0; i < keys.length; i++)
|
||||
{
|
||||
let charCode = keys.charCodeAt(i);
|
||||
let keyCode = 0;
|
||||
|
||||
Reference in New Issue
Block a user