Rework website with bulma instead of bootstrap #6

Manually merged
tlater merged 43 commits from tlater/bulma2 into master 2022-08-14 00:26:49 +01:00
Showing only changes of commit 3ba6f08986 - Show all commits

View file

@ -67,6 +67,13 @@ class MusicPlayer extends React.Component<MusicPlayerProps, State> {
} }
if (this.props.playing) { if (this.props.playing) {
// Chrome is super awkward about AudioContext, and won't
// even allow creating one without complaining about
// wanting user input, so we need to resume the context
// before we can actually play.
//
// Luckily, this has no adverse effects on Firefox.
context.resume().then(() => {
source source
.play() .play()
.then(() => { .then(() => {
@ -75,6 +82,7 @@ class MusicPlayer extends React.Component<MusicPlayerProps, State> {
.catch((error) => { .catch((error) => {
console.error(`Could not play audio: ${error}`); console.error(`Could not play audio: ${error}`);
}); });
});
} else { } else {
source.pause(); source.pause();
} }