plucked / html5-audio-editor

A small audio editor written in html5 and javascript without usage of external plugins
260 stars 90 forks source link

removed broken[deprecated] Blob syntax from wavetrack.js #2

Closed johnnyclem closed 11 years ago

johnnyclem commented 11 years ago

Rendering/Saving was not working in Chrome (didn't test other browsers)

Needed to change the 4 lines that generated the new Blob to one line using the new syntax:

    var blob = new Blob([encodedWave], {type: encoding});