You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2014/12/23 08:41:39 UTC

[16/28] git commit: [flex-asjs] [refs/heads/develop] - fix watcher chaining

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 <ah...@apache.org>
Authored: Mon Dec 22 10:00:02 2014 -0800
Committer: Alex Harui <ah...@apache.org>
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);
 };