diff options
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | public/index.html | 2 | ||||
-rw-r--r-- | src/main.ts | 2 |
3 files changed, 2 insertions, 3 deletions
@@ -26,7 +26,6 @@ Then, open your browser at `http://localhost:8000`. # Todo - Start and stop pressing space -- Rename to `drum.guyonvarch.me` - Sub divide beats - Add / Remove beat integrated into sequencer - Augment the BPM by X after Y cycles diff --git a/public/index.html b/public/index.html index 5facb9e..28482ba 100644 --- a/public/index.html +++ b/public/index.html @@ -2,7 +2,7 @@ <html lang="fr"> <meta charset="utf-8"> <meta name="viewport" content="width=device-width"> -<title>Metronome</title> +<title>Drum</title> <link rel="stylesheet" href="/main.css"> <body></body> diff --git a/src/main.ts b/src/main.ts index 16d4bb5..1c4dea3 100644 --- a/src/main.ts +++ b/src/main.ts @@ -2,7 +2,7 @@ import h from 'lib/h' import * as sequencer from 'view/sequencer' let view = h('main', {}, - h('h1', { className: 'g-Title' }, 'Metronome'), + h('h1', { className: 'g-Title' }, 'Drum'), sequencer.view() ) |