Skip to content

Instantly share code, notes, and snippets.

@StasKoval
Created February 24, 2015 19:10
Show Gist options
  • Save StasKoval/feb606785cf0f7d8883d to your computer and use it in GitHub Desktop.
Save StasKoval/feb606785cf0f7d8883d to your computer and use it in GitHub Desktop.
if (this.isFirefox) {
this.recordAudio.stopRecording(_.bind(function(url) {
this.preview.get(0).src = url;
// this.sendBlob(this.recordAudio.getBlob());
this.recordAudio.getDataURL(_.bind(function(audioDataUrl){this.sendBlob(audioDataUrl)},this));
}, this));
return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment