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

[02/28] git commit: [flex-asjs] [refs/heads/develop] - relativeTo defaults to null

relativeTo defaults 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/8c3d8e95
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/8c3d8e95
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/8c3d8e95

Branch: refs/heads/develop
Commit: 8c3d8e957ddcb90c77da9ac2528a0b69f93209f4
Parents: 5195103
Author: Alex Harui <ah...@apache.org>
Authored: Wed Dec 17 14:40:45 2014 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Wed Dec 17 14:40:45 2014 -0800

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


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/8c3d8e95/frameworks/js/FlexJS/src/mx/states/AddItems.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/mx/states/AddItems.js b/frameworks/js/FlexJS/src/mx/states/AddItems.js
index bcc84f8..00a3c73 100644
--- a/frameworks/js/FlexJS/src/mx/states/AddItems.js
+++ b/frameworks/js/FlexJS/src/mx/states/AddItems.js
@@ -108,9 +108,9 @@ mx.states.AddItems.prototype.position = '';
 
 /**
  * @expose
- * @type {string} relativeTo The id of the child where the item goes.
+ * @type {?string} relativeTo The id of the child where the item goes.
  */
-mx.states.AddItems.prototype.relativeTo = '';
+mx.states.AddItems.prototype.relativeTo = null;
 
 
 /**