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/02/04 19:51:26 UTC

[2/3] git commit: [flex-asjs] [refs/heads/develop] - re-add CSSButtonView.as to SWC. Not sure why it was removed but seems to not break anything

re-add CSSButtonView.as to SWC.  Not sure why it was removed but seems to not break anything


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

Branch: refs/heads/develop
Commit: 919a5e9f8e3142d7a75e6664adf42447daade37d
Parents: 11f443a
Author: Alex Harui <ah...@apache.org>
Authored: Mon Feb 3 17:14:29 2014 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Tue Feb 4 10:49:30 2014 -0800

----------------------------------------------------------------------
 frameworks/as/projects/FlexJSUI/defaults.css           | 6 +++++-
 frameworks/as/projects/FlexJSUI/src/FlexJSUIClasses.as | 1 +
 2 files changed, 6 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/919a5e9f/frameworks/as/projects/FlexJSUI/defaults.css
----------------------------------------------------------------------
diff --git a/frameworks/as/projects/FlexJSUI/defaults.css b/frameworks/as/projects/FlexJSUI/defaults.css
index 3c775fb..3db56a2 100644
--- a/frameworks/as/projects/FlexJSUI/defaults.css
+++ b/frameworks/as/projects/FlexJSUI/defaults.css
@@ -34,7 +34,6 @@ Button
 	background-color: #d8d8d8;
 	border: 1px solid #000000;
 	padding: 4px;
-	/*IBeadView: ClassReference("org.apache.flex.html.staticControls.beads.CSSButtonView");*/
 }
 
 Button:hover
@@ -121,6 +120,11 @@ Alert
     border-thickness: 1;
 }
 
+Button
+{
+    IBeadView: ClassReference("org.apache.flex.html.staticControls.beads.CSSButtonView");
+}
+
 CheckBox
 {
     IBeadModel: ClassReference("org.apache.flex.html.staticControls.beads.models.ToggleButtonModel");

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/919a5e9f/frameworks/as/projects/FlexJSUI/src/FlexJSUIClasses.as
----------------------------------------------------------------------
diff --git a/frameworks/as/projects/FlexJSUI/src/FlexJSUIClasses.as b/frameworks/as/projects/FlexJSUI/src/FlexJSUIClasses.as
index fa30008..1b8e7f7 100644
--- a/frameworks/as/projects/FlexJSUI/src/FlexJSUIClasses.as
+++ b/frameworks/as/projects/FlexJSUI/src/FlexJSUIClasses.as
@@ -37,6 +37,7 @@ internal class FlexJSUIClasses
     import org.apache.flex.html.staticControls.beads.ComboBoxView; ComboBoxView;
     import org.apache.flex.html.staticControls.beads.ContainerView; ContainerView;
     import org.apache.flex.html.staticControls.beads.ControlBarMeasurementBead; ControlBarMeasurementBead;
+    import org.apache.flex.html.staticControls.beads.CSSButtonView; CSSButtonView;
 	import org.apache.flex.html.staticControls.beads.CSSTextButtonView; CSSTextButtonView;
     import org.apache.flex.html.staticControls.beads.DropDownListView; DropDownListView;
 	import org.apache.flex.html.staticControls.beads.ImageView; ImageView;