mdn / webaudio-examples

Code examples that accompany the MDN Web Docs pages relating to Web Audio.
https://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API
Creative Commons Zero v1.0 Universal
1.25k stars 433 forks source link

Update offline-audio-context-promise to modern JS #75

Closed teoli2003 closed 2 years ago

teoli2003 commented 2 years ago

This is part of our project to update code to a more modern JS syntax.

This PR updates the offline-audio-context-promise example:

In addition:

Tested on Firefox, Safari, and Chrome (macOS) via a local server.

MrBrain295 commented 2 years ago

If you move the closing tag for the body element one line above the closing tag for the html element of fixes a Nu HTML checker error.

teoli2003 commented 2 years ago

You're right, this is an oversight. The script should be in the header or the body. (ideally <script> in the header and the JS in a separate file, but this is significant work for little outcome).

Fix incoming.