Explorar o código

Merge pull request #19701 from DigiTec/dev

Remove single instance of whitelist with allowlist
Mr.doob %!s(int64=5) %!d(string=hai) anos
pai
achega
54c53a5364
Modificáronse 3 ficheiros con 3 adicións e 3 borrados
  1. 1 1
      build/three.js
  2. 1 1
      build/three.module.js
  3. 1 1
      src/animation/PropertyBinding.js

+ 1 - 1
build/three.js

@@ -44276,7 +44276,7 @@
 
 				var objectName = results.nodeName.substring( lastDot + 1 );
 
-				// Object names must be checked against a whitelist. Otherwise, there
+				// Object names must be checked against an allowlist. Otherwise, there
 				// is no way to parse 'foo.bar.baz': 'baz' must be a property, but
 				// 'bar' could be the objectName, or part of a nodeName (which can
 				// include '.' characters).

+ 1 - 1
build/three.module.js

@@ -44244,7 +44244,7 @@ Object.assign( PropertyBinding, {
 
 			const objectName = results.nodeName.substring( lastDot + 1 );
 
-			// Object names must be checked against a whitelist. Otherwise, there
+			// Object names must be checked against an allowlist. Otherwise, there
 			// is no way to parse 'foo.bar.baz': 'baz' must be a property, but
 			// 'bar' could be the objectName, or part of a nodeName (which can
 			// include '.' characters).

+ 1 - 1
src/animation/PropertyBinding.js

@@ -173,7 +173,7 @@ Object.assign( PropertyBinding, {
 
 			const objectName = results.nodeName.substring( lastDot + 1 );
 
-			// Object names must be checked against a whitelist. Otherwise, there
+			// Object names must be checked against an allowlist. Otherwise, there
 			// is no way to parse 'foo.bar.baz': 'baz' must be a property, but
 			// 'bar' could be the objectName, or part of a nodeName (which can
 			// include '.' characters).