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/05/01 03:13:11 UTC

[5/7] git commit: [flex-asjs] [refs/heads/dual] - Express: Application automatically adds an ApplicationDataBinding bead similar to how Container automatically adds a ContainerDataBinding bead

Express: Application automatically adds an ApplicationDataBinding bead similar to how Container automatically adds a ContainerDataBinding bead


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

Branch: refs/heads/dual
Commit: c6b4f8a6570e7ff92415bd9049c66b2b2d53a10c
Parents: 90514e7
Author: Josh Tynjala <jo...@apache.org>
Authored: Wed Apr 26 15:51:55 2017 -0700
Committer: Josh Tynjala <jo...@apache.org>
Committed: Wed Apr 26 15:51:55 2017 -0700

----------------------------------------------------------------------
 .../Express/src/main/flex/org/apache/flex/express/Application.as   | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/c6b4f8a6/frameworks/projects/Express/src/main/flex/org/apache/flex/express/Application.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/Express/src/main/flex/org/apache/flex/express/Application.as b/frameworks/projects/Express/src/main/flex/org/apache/flex/express/Application.as
index 1199dd5..8a13afd 100644
--- a/frameworks/projects/Express/src/main/flex/org/apache/flex/express/Application.as
+++ b/frameworks/projects/Express/src/main/flex/org/apache/flex/express/Application.as
@@ -18,6 +18,7 @@
 ////////////////////////////////////////////////////////////////////////////////
 package org.apache.flex.express
 {
+	import org.apache.flex.binding.ApplicationDataBinding;
 	import org.apache.flex.core.Application;
 	import org.apache.flex.core.SimpleCSSValuesImpl;
 	
@@ -32,6 +33,7 @@ package org.apache.flex.express
 			super();
 			
 			this.valuesImpl = new SimpleCSSValuesImpl();
+			addBead(new ApplicationDataBinding());
 		}
 	}
 }
\ No newline at end of file