You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by pe...@apache.org on 2014/03/12 20:36:00 UTC

git commit: [flex-asjs] [refs/heads/develop] - ContainerBase dispatches "childrenAdded" once its beads and children have been processed; this can trigger any layout beads (for example) to do their work.

Repository: flex-asjs
Updated Branches:
  refs/heads/develop c9c7f417b -> 0a9a2a0ca


ContainerBase dispatches "childrenAdded" once its beads and children have been processed; this can trigger any layout beads (for example) to do their work.


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

Branch: refs/heads/develop
Commit: 0a9a2a0ca992f36b19e63a2cd115f23a88fa0c5d
Parents: c9c7f41
Author: Peter Ent <pe...@apache.org>
Authored: Wed Mar 12 15:35:50 2014 -0400
Committer: Peter Ent <pe...@apache.org>
Committed: Wed Mar 12 15:35:50 2014 -0400

----------------------------------------------------------------------
 .../as/projects/FlexJSUI/src/org/apache/flex/core/ContainerBase.as  | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/0a9a2a0c/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/ContainerBase.as
----------------------------------------------------------------------
diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/ContainerBase.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/ContainerBase.as
index 6c32cba..1360531 100644
--- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/ContainerBase.as
+++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/ContainerBase.as
@@ -72,6 +72,7 @@ package org.apache.flex.core
             super.addedToParent();
             
 			dispatchEvent(new Event("initComplete"))
+			dispatchEvent( new Event("childrenAdded") );
 		}
 		
         /**