diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-05-21 17:37:09 +0300 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-05-21 17:37:09 +0300 |
commit | 1f3182924ba8e70d0e0fc3ed270782f324376ba3 (patch) | |
tree | 27a9e5167e5b981dfe56f5084ea8e1e8743f3fc0 /javascript/imageviewerGamepad.js | |
parent | 89f9faa63388756314e8a1d96cf86bf5e0663045 (diff) | |
parent | fdaf0147b6d2a5f599464bb7c65817ef5832eff1 (diff) |
Merge branch 'dev' into release_candidate
Diffstat (limited to 'javascript/imageviewerGamepad.js')
-rw-r--r-- | javascript/imageviewerGamepad.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/javascript/imageviewerGamepad.js b/javascript/imageviewerGamepad.js index 6297a12b..31d226de 100644 --- a/javascript/imageviewerGamepad.js +++ b/javascript/imageviewerGamepad.js @@ -1,7 +1,7 @@ window.addEventListener('gamepadconnected', (e) => { const index = e.gamepad.index; let isWaiting = false; - setInterval(async () => { + setInterval(async() => { if (!opts.js_modal_lightbox_gamepad || isWaiting) return; const gamepad = navigator.getGamepads()[index]; const xValue = gamepad.axes[0]; @@ -14,7 +14,7 @@ window.addEventListener('gamepadconnected', (e) => { } if (isWaiting) { await sleepUntil(() => { - const xValue = navigator.getGamepads()[index].axes[0] + const xValue = navigator.getGamepads()[index].axes[0]; if (xValue < 0.3 && xValue > -0.3) { return true; } |