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 2013/11/25 07:59:14 UTC

[04/18] git commit: [flex-asjs] [refs/heads/develop] - Somehow, stepSize went missing. Restored

Somehow, stepSize went missing.  Restored


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

Branch: refs/heads/develop
Commit: 345431675d96b4008edbc305b986cee750e32e82
Parents: 52d4292
Author: Alex Harui <ah...@apache.org>
Authored: Wed Nov 20 23:18:18 2013 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Wed Nov 20 23:18:18 2013 -0800

----------------------------------------------------------------------
 .../src/org/apache/flex/html/staticControls/Slider.as   | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/34543167/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/staticControls/Slider.as
----------------------------------------------------------------------
diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/staticControls/Slider.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/staticControls/Slider.as
index 47a0db5..f73109d 100644
--- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/staticControls/Slider.as
+++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/staticControls/Slider.as
@@ -73,5 +73,15 @@ package org.apache.flex.html.staticControls
 		{
 			IRangeModel(model).snapInterval = value;
 		}
-	}
+        
+        public function get stepSize():Number
+        {
+            return IRangeModel(model).stepSize;
+        }
+        public function set stepSize(value:Number):void
+        {
+            IRangeModel(model).stepSize = value;
+        }
+
+    }
 }
\ No newline at end of file