Skip to content

Commit

Permalink
Merge branch 'develop' of ssh://github.com/eliandoran/toolkit into de…
Browse files Browse the repository at this point in the history
…velop
  • Loading branch information
eliandoran committed Dec 17, 2023
2 parents b1bb57a + 2aa1656 commit e50c923
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/js-keycode/keycheck-generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function getMetaKeyVariableName(e) {
const meta = [];
if (e.ctrlKey) meta.push("Ctrl");
if (e.altKey) meta.push("Alt");
if (e.metaName) meta.push("Meta");
if (e.metaKey) meta.push("Meta");
return meta.join("");
}

Expand Down

0 comments on commit e50c923

Please sign in to comment.