fix watcher chaining
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/78b20164 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/78b20164 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/78b20164 Branch: refs/heads/develop Commit: 78b20164908f105e656247f815f885f13b4c0e09 Parents: 0a520a7 Author: Alex Harui <[email protected]> Authored: Mon Dec 22 10:00:02 2014 -0800 Committer: Alex Harui <[email protected]> Committed: Mon Dec 22 10:00:02 2014 -0800 ---------------------------------------------------------------------- frameworks/js/FlexJS/src/org/apache/flex/binding/WatcherBase.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78b20164/frameworks/js/FlexJS/src/org/apache/flex/binding/WatcherBase.js ---------------------------------------------------------------------- diff --git a/frameworks/js/FlexJS/src/org/apache/flex/binding/WatcherBase.js b/frameworks/js/FlexJS/src/org/apache/flex/binding/WatcherBase.js index 8d3ce4e..cd2ec80 100644 --- a/frameworks/js/FlexJS/src/org/apache/flex/binding/WatcherBase.js +++ b/frameworks/js/FlexJS/src/org/apache/flex/binding/WatcherBase.js @@ -80,7 +80,7 @@ org.apache.flex.binding.WatcherBase.prototype.addChild = else this.children.push(child); - child.parentChanged(this); + child.parentChanged(this.value); };
