[richfaces-svn-commits] JBoss Rich Faces SVN: r2263 - trunk/ui/inputnumber-slider/src/main/resources/org/richfaces/renderkit/html/script.
richfaces-svn-commits at lists.jboss.org
richfaces-svn-commits at lists.jboss.org
Wed Aug 15 07:53:58 EDT 2007
Author: a.izobov
Date: 2007-08-15 07:53:57 -0400 (Wed, 15 Aug 2007)
New Revision: 2263
Modified:
trunk/ui/inputnumber-slider/src/main/resources/org/richfaces/renderkit/html/script/SliderScript.js
Log:
http://jira.jboss.com/jira/browse/RF-504
Modified: trunk/ui/inputnumber-slider/src/main/resources/org/richfaces/renderkit/html/script/SliderScript.js
===================================================================
--- trunk/ui/inputnumber-slider/src/main/resources/org/richfaces/renderkit/html/script/SliderScript.js 2007-08-15 09:06:03 UTC (rev 2262)
+++ trunk/ui/inputnumber-slider/src/main/resources/org/richfaces/renderkit/html/script/SliderScript.js 2007-08-15 11:53:57 UTC (rev 2263)
@@ -228,7 +228,9 @@
var handle = Event.element(event);
var pointer = Event.pointerX(event);
var offsets = Position.cumulativeOffset(this.track);
+ this.updating = true;
this.setValue(this.translateToValue( ( pointer - offsets[0] ) -(this.handleLength/2)));
+ this.updating = false;
var offsets = Position.cumulativeOffset(this.handle);
this.offsetX = pointer - offsets[0];
}
More information about the richfaces-svn-commits
mailing list