aboutsummaryrefslogtreecommitdiff
path: root/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'app.js')
-rw-r--r--app.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/app.js b/app.js
index ad5dcb0..719b6ed 100644
--- a/app.js
+++ b/app.js
@@ -11,6 +11,10 @@ const autoplayCheckbox = document.querySelector("#autoplay");
11const clearBtn = document.querySelector("#clear"); 11const clearBtn = document.querySelector("#clear");
12const clips = document.querySelector("#clips"); 12const clips = document.querySelector("#clips");
13 13
14clearBtn.addEventListener("click", _event => {
15 clips.textContent = "";
16});
17
14function stopPlayer(player) { 18function stopPlayer(player) {
15 player.pause(); 19 player.pause();
16 player.currentTime = 0; 20 player.currentTime = 0;
@@ -61,7 +65,6 @@ function onGetDeviceSuccess(stream) {
61 const audioElement = makeExclusive(audioElementForBlob(blob)); 65 const audioElement = makeExclusive(audioElementForBlob(blob));
62 66
63 // TODO: record blob and list to local persistent storage 67 // TODO: record blob and list to local persistent storage
64 // TODO: "clear all" button to clear all clips
65 // TODO: buttons to clear individual clips 68 // TODO: buttons to clear individual clips
66 // TODO: keyboard shortcut to play clips for the ten last indexes 69 // TODO: keyboard shortcut to play clips for the ten last indexes
67 70