id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc,blocking,blockedby
2197,jqueryUI Slider plugin - Multiple handle BUG,alexo,paul,"I'm using the demo code of the slider jquery-UI plugin to reproduce the bug. Below is a markup for a slider with multiple handle. 
{{{
<div id='example3' class='ui-slider-2' style=""margin: 40px;"">
  <div class='ui-slider-handle'></div>
  <div class='ui-slider-handle' style=""left: 188px;""></div>
</div>
<span id=""slider-min""></span>
<span id=""slider-max""></span>
}}}

Here the slider is constructed.
{{{
	$('#example3').slider({
          minValue: 0,
          maxValue: 100,
          slide: function(e,ui) {
	    $(""#slider-min"").text( ui.values[0] );
	    $(""#slider-max"").text( ui.values[1] );
	  }
        });
}}}
When the handler is moved, the span values are updated. The problem is that the second handler have the wrong value (0 instead of maxValue) when the first handler is moved for the first time.

Thank you!

Regards,
Alex Objelean.",bug,closed,major,1.2.3,ui,1.2.2,fixed,jquery ui plugin slider,alex.objelean@…,,
