diff options
author | Brian Cully <bjc@spork.org> | 2025-03-08 16:30:39 -0500 |
---|---|---|
committer | Brian Cully <bjc@spork.org> | 2025-03-08 16:30:39 -0500 |
commit | 8b0d4818c0d305feb2e69f32166f7e70e4e7b900 (patch) | |
tree | 7457d642999962652f6b998c57e68b7a2f60e221 /main.mjs | |
parent | c4e564af2a55fd1ebb2202b17193e4b789c499d7 (diff) | |
download | chords-8b0d4818c0d305feb2e69f32166f7e70e4e7b900.tar.gz chords-8b0d4818c0d305feb2e69f32166f7e70e4e7b900.zip |
mute strings by clicking on the open note
Diffstat (limited to 'main.mjs')
-rw-r--r-- | main.mjs | 11 |
1 files changed, 0 insertions, 11 deletions
@@ -1,14 +1,3 @@ import Fretboard from './fretboard.mjs' -import { MajorScale, MinorScale } from './scale.mjs'; Fretboard(document.getElementById('fretboard')); -const cMaj = MajorScale('C'); -console.log('test major scale', cMaj.toString()); -console.log(`test fifth ${cMaj.root}`, cMaj.fifth); -const cMin = MinorScale('C'); -console.log('test minor scale', cMin.toString()); -console.log(`test fifth ${cMin.root}`, cMin.fifth); -const bMaj = MajorScale('B'); -console.log('test major scale', bMaj.toString()); -console.log(`test fifth ${bMaj.root}`, bMaj.fifth); -window.bjc = bMaj; |