small modifications to make the waveform enabled in firefox 21 (playout does not work though)

This commit is contained in:
Naomi 2013-05-27 11:55:57 -04:00
parent 06fbbe89f2
commit 9ce3b0c043
2 changed files with 3 additions and 5 deletions

View file

@ -176,6 +176,7 @@ TrackEditor.prototype.loadBuffer = function(src) {
var that = this,
xhr = new XMLHttpRequest();
xhr.open('GET', src, true);
xhr.responseType = 'arraybuffer';
xhr.addEventListener('progress', function(e) {
@ -198,7 +199,6 @@ TrackEditor.prototype.loadBuffer = function(src) {
);
}, false);
xhr.open('GET', src, true);
xhr.send();
};