Author: pyaschenko
Date: 2009-09-29 13:09:11 -0400 (Tue, 29 Sep 2009)
New Revision: 15686
Modified:
branches/community/3.3.X/ui/inputnumber-slider/src/main/resources/org/richfaces/renderkit/html/script/SliderScript.js
Log:
https://jira.jboss.org/jira/browse/RF-7930
Modified:
branches/community/3.3.X/ui/inputnumber-slider/src/main/resources/org/richfaces/renderkit/html/script/SliderScript.js
===================================================================
---
branches/community/3.3.X/ui/inputnumber-slider/src/main/resources/org/richfaces/renderkit/html/script/SliderScript.js 2009-09-29
15:42:04 UTC (rev 15685)
+++
branches/community/3.3.X/ui/inputnumber-slider/src/main/resources/org/richfaces/renderkit/html/script/SliderScript.js 2009-09-29
17:09:11 UTC (rev 15686)
@@ -64,6 +64,11 @@
this.graggedImageOn = false;
this.value = 0;
this.digCount = 0;
+
+ //QUICK FIX for RF-7930 // need to be reworked
+ this.options.minValue = this.roundFloat(this.options.minValue);
+ this.options.maxValue = this.roundFloat(this.options.maxValue);
+
this.delay = this.options.delay;
if("" == this.input.value){
this.input.value = this.options.minValue;