Skip to content

Commit

Permalink
Correct logging from uploadAudio callback in demo.
Browse files Browse the repository at this point in the history
  • Loading branch information
pauln committed Dec 3, 2014
1 parent c4473d3 commit 9b7f89d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ <h2>Log</h2>
xhr.open('POST', 'upload.php', true);
xhr.onreadystatechange = function() {
if (xhr.readyState == 4) {
log.innerHTML += "\n" + e + " " + (data || '');
log.innerHTML += "\nMP3 uploaded.";
}
};
xhr.send(fd);
Expand Down

0 comments on commit 9b7f89d

Please sign in to comment.