We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Calling linkPaths(a, b) and then linkPaths(b, c) doesn't link c to a.
In 1.0 the checkbox is unchecked: http://jsbin.com/hocuwazada/edit?html,output
Same code, but with 2.0 the checkbox stays checked: http://jsbin.com/xevedoyeme/edit?html,output
this._foo2 = this._foo; this._foo3 = this._foo; this.linkPaths('_foo', '_foo2'); this.linkPaths('_foo2', '_foo3') this.set('_foo3.checked', false);
A notification is triggered on _foo.
A notification is triggered on _foo2 but not _foo.
The text was updated successfully, but these errors were encountered:
Process paths regardless of accessor, & loop on computeLinkedPaths.
e2d1702
Fixes #4542
kevinpschaaf
No branches or pull requests
Description
Calling linkPaths(a, b) and then linkPaths(b, c) doesn't link c to a.
Live Demo
In 1.0 the checkbox is unchecked:
http://jsbin.com/hocuwazada/edit?html,output
Same code, but with 2.0 the checkbox stays checked:
http://jsbin.com/xevedoyeme/edit?html,output
Steps to Reproduce
Expected Results
A notification is triggered on _foo.
Actual Results
A notification is triggered on _foo2 but not _foo.
Browsers Affected
Versions
The text was updated successfully, but these errors were encountered: