forward port non-numeric slider form field fix
This commit is contained in:
parent
05bb43852d
commit
146fe3fecd
2 changed files with 2 additions and 1 deletions
|
|
@ -48,6 +48,7 @@
|
|||
- fixed #4186: search results (macro not expanded in the synopsis field)
|
||||
- fixed #4191: Using 3 consecutive tildes in a Post title makes a bad URL/Pos
|
||||
- fixed #8927: Collaboration System: Thread approval workflow setting ignore
|
||||
- fixed #8827: Slider JS bug for non-numeric values (Patrick Donelan, SDH Consulting)
|
||||
|
||||
7.6.3
|
||||
- improved performance of file uploads
|
||||
|
|
|
|||
|
|
@ -325,7 +325,7 @@ sub toHtml {
|
|||
|
||||
$slider.setMaximum(|.$self->getSliderMaximum.qq|);
|
||||
$slider.setMinimum(|.$self->getSliderMinimum.qq|);
|
||||
$slider.setValue(|.$self->getSliderValue.qq|);
|
||||
$slider.setValue("|.$self->getSliderValue.qq|");
|
||||
|
||||
$slider.onchange = function () {|.
|
||||
$self->getOnChangeSlider.qq|;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue