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:36 UTC

[13/28] git commit: [flex-asjs] [refs/heads/develop] - default target to null

default target to null


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

Branch: refs/heads/develop
Commit: 0b6ed380022caeff6f91a472ba6f3edf31b829ee
Parents: aeb96f3
Author: Alex Harui <ah...@apache.org>
Authored: Mon Dec 22 09:58:45 2014 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Mon Dec 22 09:58:45 2014 -0800

----------------------------------------------------------------------
 frameworks/js/FlexJS/src/mx/states/SetProperty.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/0b6ed380/frameworks/js/FlexJS/src/mx/states/SetProperty.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/mx/states/SetProperty.js b/frameworks/js/FlexJS/src/mx/states/SetProperty.js
index a06346c..ab76e9f 100644
--- a/frameworks/js/FlexJS/src/mx/states/SetProperty.js
+++ b/frameworks/js/FlexJS/src/mx/states/SetProperty.js
@@ -63,9 +63,9 @@ mx.states.SetProperty.prototype.name = '';
 
 /**
  * @expose
- * @type {string} target The id of the object.
+ * @type {?string} target The id of the object.
  */
-mx.states.SetProperty.prototype.target = '';
+mx.states.SetProperty.prototype.target = null;
 
 
 /**