You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by bi...@apache.org on 2014/10/18 01:45:52 UTC

[6/7] git commit: [flex-asjs] [refs/heads/develop] - Cleanup states definitions

Cleanup states definitions


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

Branch: refs/heads/develop
Commit: e14233bcf8429586d3dbcd0856fa4f3b56e3dc52
Parents: bd13805
Author: OmPrakash Muppirala <bi...@gmail.com>
Authored: Fri Oct 17 16:31:16 2014 -0700
Committer: OmPrakash Muppirala <bi...@gmail.com>
Committed: Fri Oct 17 16:31:16 2014 -0700

----------------------------------------------------------------------
 examples/FlexJSTest_SVG/src/SkinsView.mxml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/e14233bc/examples/FlexJSTest_SVG/src/SkinsView.mxml
----------------------------------------------------------------------
diff --git a/examples/FlexJSTest_SVG/src/SkinsView.mxml b/examples/FlexJSTest_SVG/src/SkinsView.mxml
index 48c6f87..eb5b0e4 100644
--- a/examples/FlexJSTest_SVG/src/SkinsView.mxml
+++ b/examples/FlexJSTest_SVG/src/SkinsView.mxml
@@ -29,7 +29,7 @@ limitations under the License.
 			
 			protected function viewbase1_initCompleteHandler(event:org.apache.flex.events.Event):void
 			{
-				this.mouseChildren = false;
+				//this.mouseChildren = false;
 				this.addEventListener(org.apache.flex.events.MouseEvent.MOUSE_DOWN, handleMouseDown);
 				this.addEventListener(org.apache.flex.events.MouseEvent.MOUSE_UP, handleMouseUp);
 				this.addEventListener(org.apache.flex.events.MouseEvent.MOUSE_OVER, handleMouseOver);
@@ -59,10 +59,10 @@ limitations under the License.
 		]]>
 	</fx:Script>
 	<basic:states>
-		<mx:State name="up" id="stateUp"/>
-		<mx:State name="over" id="stateOver"/>
-		<mx:State name="down" id="stateDown"/>
-		<mx:State name="disabled" id="stateDisabled"/>
+		<mx:State name="up"/>
+		<mx:State name="over"/>
+		<mx:State name="down"/>
+		<mx:State name="disabled"/>
 	</basic:states>
 	
 	<basic:Label text="MyButton" x="20" y="5" includeIn="{[up,over,down,disabled]}" />