fix error

This commit is contained in:
ruanyf
2015-10-15 22:09:37 +08:00
parent 86eca41818
commit 349e0fd048
7 changed files with 36 additions and 30 deletions
+1 -1
View File
@@ -782,7 +782,7 @@ xhr.open('GET', someUrl);
xhr.responseType = 'arraybuffer';
xhr.onload = function () {
var let arrayBuffer = xhr.response;
let arrayBuffer = xhr.response;
// ···
};