diff options
author | Brian Cully <bjc@spork.org> | 2025-03-09 14:37:18 -0400 |
---|---|---|
committer | Brian Cully <bjc@spork.org> | 2025-03-09 14:37:18 -0400 |
commit | d69720d09760d153bb2059e57da3a4ed6c59e142 (patch) | |
tree | 5bdc9370682f4d23831cbfa3317f8cfc626f726f /index.html | |
parent | 6db45269a1b2be66ee89297e3c7fba7af5a20cc2 (diff) | |
download | chords-d69720d09760d153bb2059e57da3a4ed6c59e142.tar.gz chords-d69720d09760d153bb2059e57da3a4ed6c59e142.zip |
use ‘tonic’ rather than ‘root’
i dunno, makes me seem like i know what i'm talking about. to me, at
least.
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -98,8 +98,8 @@ <form id='key-picker'> <fieldset> <legend>key</legend> - <label for='root'>root note:</label> - <select id='root' name='root'> + <label for='tonic'>tonic:</label> + <select id='tonic' name='tonic'> <option value='A'>A</option> <option value='B'>B</option> <option value='C' selected>C</option> @@ -108,8 +108,8 @@ <option value='F'>F</option> <option value='G'>G</option> </select> - <label for='foo'></label> - <select id='foo' name='foo'> + <label for='diatonic'>diatonic:</label> + <select id='diatonic' name='diatonic'> <option value='major' selected>major</option> <option value='minor'>minor</option> </select> |