Skip to content

Commit

Permalink
Remove stray comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
sustained committed Sep 7, 2019
1 parent 8706749 commit 64f39a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Piano.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<script>
import { clamp } from "@/library/math"
const WHITE_KEYS = ["C", "D", "E", "F", "G", "A", "B"] // ["A", "B", "C", "D", "E", "F", "G"]
const BLACK_KEYS = ["C#", "D#", null, "F#", "G#", "A#", null] // ["A#", null, "C#", "D#", null, "F#", "G#"]
const WHITE_KEYS = ["C", "D", "E", "F", "G", "A", "B"]
const BLACK_KEYS = ["C#", "D#", null, "F#", "G#", "A#", null]
const NOTE_OFFSETS = ["C", "D", "E", "F", "G", "A", "B"]
const NUM_WHITE_KEYS_PER_OCTAVE = 7
const NUM_BLACK_KEYS_PER_OCTAVE = 5
Expand Down

0 comments on commit 64f39a1

Please sign in to comment.