Skip to content

Commit

Permalink
Merge pull request mrdoob#11462 from luruke/dev-ie11-uint8clampedarray
Browse files Browse the repository at this point in the history
Fix syntax error on older builds of IE11 mrdoob#11440
  • Loading branch information
mrdoob authored Jun 8, 2017
2 parents 2550984 + f9ea222 commit 5d8bb02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/loaders/BufferGeometryLoader.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Object.assign( BufferGeometryLoader.prototype, {
var TYPED_ARRAYS = {
Int8Array: Int8Array,
Uint8Array: Uint8Array,
Uint8ClampedArray: Uint8ClampedArray,
Uint8ClampedArray: typeof Uint8ClampedArray !== 'undefined' ? Uint8ClampedArray : Uint8Array,
Int16Array: Int16Array,
Uint16Array: Uint16Array,
Int32Array: Int32Array,
Expand Down

0 comments on commit 5d8bb02

Please sign in to comment.