Skip to content

Commit

Permalink
Merge pull request #2 from minimo/feature/localfile
Browse files Browse the repository at this point in the history
typo修正
  • Loading branch information
daishihmr authored Jun 24, 2016
2 parents 56adce4 + 97638c1 commit 85177d4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build/vox.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ var vox = {};
xhr.open("GET", url, true);
xhr.responseType = "arraybuffer";
xhr.onreadystatechange = function() {
if (xhr.readyState === 4 && (xhr.status === 200 || xhr.statue === 0)) {
if (xhr.readyState === 4 && (xhr.status === 200 || xhr.status === 0)) {
var arrayBuffer = xhr.response;
if (arrayBuffer) {
var byteArray = new Uint8Array(arrayBuffer);
Expand Down
Loading

0 comments on commit 85177d4

Please sign in to comment.