generated from simonw/datasette-plugin-template-repository
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
I did this in the DevTools console and it's really fun:
function playAllAudios() {
let audios = Array.from(document.querySelectorAll('audio'));
function playNext() {
if (!audios.length) {
return;
}
let next = audios.shift();
next.addEventListener('ended', playNext);
next.play();
}
playNext();
}
playAllAudios();Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request
