Merge pull request #1029 from jwagner79/master

IE9 subarray method not defined
This commit is contained in:
notmasteryet 2012-01-04 16:27:54 -08:00
commit 24c2b1638a

View File

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