Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
iansan5653 committed Oct 10, 2023
1 parent 10856b5 commit 2884cd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/hotkey_mapper.html
Expand Up @@ -47,13 +47,13 @@ <h1 id="app-name">Hotkey Code</h1>

<script type="module">
import {eventToHotkeyString} from './hotkey/index.js'
import sequenceTracker from './hotkey/sequence.js'
import SequenceTracker from './hotkey/sequence.js'

const hotkeyCodeElement = document.getElementById('hotkey-code')
const sequenceStatusElement = document.getElementById('sequence-status')
const resetButtonElement = document.getElementById('reset-button')

const sequenceTracker = new sequenceTracker({
const sequenceTracker = new SequenceTracker({
onReset() {
sequenceStatusElement.hidden = true
}
Expand Down

0 comments on commit 2884cd2

Please sign in to comment.