Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
d-002 authored Apr 27, 2024
2 parents e10cbe4 + a70b5eb commit e223b32
Show file tree
Hide file tree
Showing 6 changed files with 1,559 additions and 245 deletions.
26 changes: 26 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
module.exports = {
'env': {
'browser': true,
'es2021': true,
},
'extends': ['google', 'prettier'],
'overrides': [
{
'env': {
'node': true,
},
'files': [
'.eslintrc.{js,cjs}',
],
'parserOptions': {
'sourceType': 'script',
},
},
],
'parserOptions': {
'ecmaVersion': 'latest',
'sourceType': 'module',
},
'rules': {
},
};
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@ <h2>Keybinds</h2>
<h2>Other</h2>
<form>
<label for="DAS">DAS (ms)</label>
<input id="DAS" value="133" ondrop="return false;" onpaste="return false;" onkeypress="return event.charCode>=48 && event.charCode<=57" required><br>
<input id="DAS" value="67" ondrop="return false;" onpaste="return false;" onkeypress="return event.charCode>=48 && event.charCode<=57" required><br>
<label for="ARR">ARR (ms)</label>
<input id="ARR" value="10" ondrop="return false;" onpaste="return false;" onkeypress="return event.charCode>=48 && event.charCode<=57" required><br>
<input id="ARR" value="5" ondrop="return false;" onpaste="return false;" onkeypress="return event.charCode>=48 && event.charCode<=57" required><br>
</form>
<div class="invisible">
<a href="javascript:closeKeysSettings()" class="pseudo-button">Save and close</a>
Expand Down
Loading

0 comments on commit e223b32

Please sign in to comment.