Updated Branches: refs/heads/develop fa7ceb35e -> 22f891823
Support custom styles in fx:Style blocks Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/22f89182 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/22f89182 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/22f89182 Branch: refs/heads/develop Commit: 22f8918230b2d96a9176b96f2ca53f98470edda2 Parents: fa7ceb3 Author: Alex Harui <[email protected]> Authored: Tue Nov 12 15:28:58 2013 -0800 Committer: Alex Harui <[email protected]> Committed: Tue Nov 12 15:28:58 2013 -0800 ---------------------------------------------------------------------- frameworks/js/FlexJS/src/org/apache/flex/core/ViewBase.js | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/22f89182/frameworks/js/FlexJS/src/org/apache/flex/core/ViewBase.js ---------------------------------------------------------------------- diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/ViewBase.js b/frameworks/js/FlexJS/src/org/apache/flex/core/ViewBase.js index 811c95c..09afe52 100644 --- a/frameworks/js/FlexJS/src/org/apache/flex/core/ViewBase.js +++ b/frameworks/js/FlexJS/src/org/apache/flex/core/ViewBase.js @@ -77,6 +77,7 @@ org.apache.flex.core.ViewBase.prototype.MXMLDescriptor = null; org.apache.flex.core.ViewBase.prototype.addedToParent = function() { //goog.base(this,'addedToParent'); + org.apache.flex.core.ValuesManager.valuesImpl.init(this); org.apache.flex.utils.MXMLDataInterpreter.generateMXMLProperties(this, this.get_MXMLProperties());
