Skip to content

Commit 03ccd34

Browse files
committed
#15262: Correct codestyle.
1 parent 6c2c424 commit 03ccd34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ui/widgets/slider.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -556,8 +556,8 @@ return $.widget( "ui.slider", $.ui.mouse, {
556556
max = parseFloat( max.toFixed( this._precision() ) );
557557
var optionMax = parseFloat( this.options.max.toFixed( this._precision() ) );
558558

559-
if ( this.options.includeMax) {
560-
if (max < optionMax ) {
559+
if ( this.options.includeMax ) {
560+
if ( max < optionMax ) {
561561

562562
// If max is not divisible by step and max from options
563563
// should be covered, add one more step.

0 commit comments

Comments
 (0)