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/17 01:08:06 UTC

[4/6] git commit: [flex-asjs] [refs/heads/develop] - set className so CSS will apply

set className so CSS will apply


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

Branch: refs/heads/develop
Commit: 2523dd9c3e3a789f86620f07a60ddacf66e8d2c4
Parents: 59ab143
Author: Alex Harui <ah...@apache.org>
Authored: Tue Dec 16 15:45:58 2014 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Tue Dec 16 16:07:56 2014 -0800

----------------------------------------------------------------------
 frameworks/js/FlexJS/src/org/apache/flex/core/Application.js | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/2523dd9c/frameworks/js/FlexJS/src/org/apache/flex/core/Application.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/Application.js b/frameworks/js/FlexJS/src/org/apache/flex/core/Application.js
index 2137e7b..744cc2d 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/Application.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/Application.js
@@ -82,6 +82,7 @@ org.apache.flex.core.Application.prototype.set_valuesImpl =
 org.apache.flex.core.Application.prototype.start = function() {
   this.element = document.getElementsByTagName('body')[0];
   this.element.flexjs_wrapper = this;
+  this.element.className = "Application";
 
   org.apache.flex.utils.MXMLDataInterpreter.generateMXMLInstances(this, null, this.get_MXMLDescriptor());