Author: pyaschenko
Date: 2009-09-29 13:27:20 -0400 (Tue, 29 Sep 2009)
New Revision: 15688
Modified:
tags/3.3.2.GA/ui/inputnumber-slider/src/main/resources/org/richfaces/renderkit/html/script/SliderScript.js
Log:
https://jira.jboss.org/jira/browse/RF-7930
Modified:
tags/3.3.2.GA/ui/inputnumber-slider/src/main/resources/org/richfaces/renderkit/html/script/SliderScript.js
===================================================================
---
tags/3.3.2.GA/ui/inputnumber-slider/src/main/resources/org/richfaces/renderkit/html/script/SliderScript.js 2009-09-29
17:18:54 UTC (rev 15687)
+++
tags/3.3.2.GA/ui/inputnumber-slider/src/main/resources/org/richfaces/renderkit/html/script/SliderScript.js 2009-09-29
17:27:20 UTC (rev 15688)
@@ -40,6 +40,9 @@
this.tipArrowDec = $(tipArrowDecId) ||
document.getElementsByName(tipArrowDecId)[0];
}
this.options = defaultOptions;
+ //QUICK FIX for RF-7930 // need to be reworked
+ this.options.minValue = parseFloat(this.options.minValue);
+ this.options.maxValue = parseFloat(this.options.maxValue);
this.orientation = this.options.orientation;