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 2017/06/26 16:56:05 UTC

[30/50] [abbrv] git commit: [flex-asjs] [refs/heads/master] - JS needed bindable metadata

JS needed bindable metadata


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/78f3ec5d
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/78f3ec5d
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/78f3ec5d

Branch: refs/heads/master
Commit: 78f3ec5d4ac9414dc9c4239aaa300cf24ecfbf2a
Parents: be69e26
Author: Alex Harui <ah...@apache.org>
Authored: Thu Jun 8 09:36:41 2017 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Thu Jun 8 10:20:57 2017 -0700

----------------------------------------------------------------------
 .../projects/Basic/src/main/flex/org/apache/flex/html/CheckBox.as   | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/78f3ec5d/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/CheckBox.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/CheckBox.as b/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/CheckBox.as
index d8e8568..eb1afbe 100644
--- a/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/CheckBox.as
+++ b/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/CheckBox.as
@@ -185,6 +185,7 @@ package org.apache.flex.html
             _label.childNodes.item(1).nodeValue = value;
         }
 
+        [Bindable("change")]
         public function get selected():Boolean
         {
             return (_icon.element as HTMLInputElement).checked;