Browse Source

Fix subarray error for IE9

Jeff Wagner 13 years ago
parent
commit
567dd330e1
  1. 2
      web/compatibility.js

2
web/compatibility.js

@ -14,7 +14,7 @@ @@ -14,7 +14,7 @@
}
function subarray(start, end) {
return this.slice(start, end);
return new TypedArray(this.slice(start, end));
}
function setArrayOffset(array, offset) {

Loading…
Cancel
Save