summaryrefslogtreecommitdiffstats
path: root/fretboard.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'fretboard.mjs')
-rw-r--r--fretboard.mjs13
1 files changed, 0 insertions, 13 deletions
diff --git a/fretboard.mjs b/fretboard.mjs
index cae94ec..017d273 100644
--- a/fretboard.mjs
+++ b/fretboard.mjs
@@ -94,19 +94,6 @@ export default class extends HTMLElement {
});
}
- updateSelected(formData) {
- // this.querySelectorAll('tbody .selected').forEach(elt => {
- // const string = Array.from(elt.parentNode.classList).filter(x => x.startsWith('string'))[0];
- // const val = formData.get(string);
- // const note = Note.fromString(fretToNote(this, string, val));
- // if (note.isSharp) {
- // elt.innerText = `${note} / ${note.toAlternateString()}`;
- // } else {
- // elt.innerText = note;
- // }
- // });
- }
-
zotStrings() {
console.debug('Fretboard#zotStrings', this);
const tmpl = this.querySelector('template.string');