summaryrefslogtreecommitdiffstats
path: root/scale.mjs
diff options
context:
space:
mode:
authorBrian Cully <bjc@spork.org>2025-05-12 21:52:00 -0400
committerBrian Cully <bjc@spork.org>2025-05-12 21:52:00 -0400
commitceff45422d39530b09d3d797ef88b97190c4f23c (patch)
treed3e6387bef8bd19d6eccdb750c67a407b296fcc4 /scale.mjs
parentd1c8f67d699fcd5e4ce262688b89503d3ddc0f88 (diff)
downloadchords-ceff45422d39530b09d3d797ef88b97190c4f23c.tar.gz
chords-ceff45422d39530b09d3d797ef88b97190c4f23c.zip
wip: major refactor for web components and grid layout
- hovering on notes from the key doesn't work. - need to show fret on/off, not notes, they're too distracting - save button broken
Diffstat (limited to 'scale.mjs')
-rw-r--r--scale.mjs2
1 files changed, 1 insertions, 1 deletions
diff --git a/scale.mjs b/scale.mjs
index b364a3e..5b04831 100644
--- a/scale.mjs
+++ b/scale.mjs
@@ -103,7 +103,7 @@ const ringHandler = {
}
};
-const chromaticScale = new Proxy(
+export const chromaticScale = new Proxy(
['C', 'C♯', 'D', 'D♯', 'E', 'F', 'F♯', 'G', 'G♯', 'A', 'A♯', 'B'],
ringHandler);