summaryrefslogtreecommitdiffstats
path: root/main.mjs
diff options
context:
space:
mode:
authorBrian Cully <bjc@spork.org>2025-07-28 13:14:14 -0400
committerBrian Cully <bjc@spork.org>2025-07-28 13:14:14 -0400
commite714767b8e7793c9130a77833a29716b1f2d0da5 (patch)
treeea06a43a8d71df02213401d56d88c1f650350962 /main.mjs
parent683efcb1475a567e44352d115d915d6d26fd45fd (diff)
downloadchords-e714767b8e7793c9130a77833a29716b1f2d0da5.tar.gz
chords-e714767b8e7793c9130a77833a29716b1f2d0da5.zip
fix mute selection/deselection
Diffstat (limited to 'main.mjs')
-rw-r--r--main.mjs7
1 files changed, 0 insertions, 7 deletions
diff --git a/main.mjs b/main.mjs
index 452620d..38cfc60 100644
--- a/main.mjs
+++ b/main.mjs
@@ -74,12 +74,5 @@ function init() {
kp.addEventListener(kp.noteEnterEvent, noteEnter);
kp.addEventListener(kp.noteLeaveEvent, noteLeave);
});
-
- document.querySelector('a.run').forEach(a => {
- a.onclick = e => {
- e.preventDefault();
- location.reload(true);
- }
- })
}
document.addEventListener('DOMContentLoaded', init);