Skip to content

Commit

Permalink
Updated builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdoob committed Nov 2, 2016
1 parent ef1305c commit edc8378
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 25 deletions.
9 changes: 8 additions & 1 deletion build/three.js
Original file line number Diff line number Diff line change
Expand Up @@ -29222,7 +29222,7 @@
if ( this.responseType !== undefined ) request.responseType = this.responseType;
if ( this.withCredentials !== undefined ) request.withCredentials = this.withCredentials;

if ( request.overrideMimeType ) request.overrideMimeType( 'text/plain' );
if ( request.overrideMimeType ) request.overrideMimeType( this.mimeType !== undefined ? this.mimeType : 'text/plain' );

request.send( null );

Expand Down Expand Up @@ -29253,6 +29253,13 @@
this.withCredentials = value;
return this;

},

setMimeType: function ( value ) {

this.mimeType = value;
return this;

}

} );
Expand Down
2 changes: 1 addition & 1 deletion build/three.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit edc8378

Please sign in to comment.