We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 087fb45 commit 11bd719Copy full SHA for 11bd719
src/animation/PropertyBinding.js
@@ -107,7 +107,7 @@ class PropertyBinding {
107
this.path = path;
108
this.parsedPath = parsedPath || PropertyBinding.parseTrackName( path );
109
110
- this.node = PropertyBinding.findNode( rootNode, this.parsedPath.nodeName ) || rootNode;
+ this.node = PropertyBinding.findNode( rootNode, this.parsedPath.nodeName );
111
112
this.rootNode = rootNode;
113
@@ -423,7 +423,7 @@ class PropertyBinding {
423
424
if ( ! targetObject ) {
425
426
- targetObject = PropertyBinding.findNode( this.rootNode, parsedPath.nodeName ) || this.rootNode;
+ targetObject = PropertyBinding.findNode( this.rootNode, parsedPath.nodeName );
427
428
this.node = targetObject;
429
0 commit comments