Selaa lähdekoodia

utils/modularize

Guilherme Avila 5 vuotta sitten
vanhempi
commit
0115474e23

+ 1 - 1
examples/jsm/loaders/BasisTextureLoader.js

@@ -199,7 +199,7 @@ BasisTextureLoader.prototype = Object.assign( Object.create( Loader.prototype ),
 
 			} );
 
-		// Note: replaced 'finally()' with .catch().then() block - iOS 11 support (#19416)
+		// Note: replaced '.finally()' with '.catch().then()' block - iOS 11 support (#19416)
 		texturePending
 			.catch( () => true )
 			.then( () => {

+ 1 - 1
examples/jsm/loaders/DRACOLoader.js

@@ -204,7 +204,7 @@ DRACOLoader.prototype = Object.assign( Object.create( Loader.prototype ), {
 			.then( ( message ) => this._createGeometry( message.geometry ) );
 
 		// Remove task from the task list.
-		// Note: replaced 'finally()' with .catch().then() block - iOS 11 support (#19416)
+		// Note: replaced '.finally()' with '.catch().then()' block - iOS 11 support (#19416)
 		geometryPending
 			.catch( () => true )
 			.then( () => {