Skip to content

Commit

Permalink
Fix syntax error on older builds of IE11 mrdoob#11440
Browse files Browse the repository at this point in the history
  • Loading branch information
luruke committed Jun 7, 2017
1 parent 0df6403 commit f9ea222
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 f9ea222

Please sign in to comment.