File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -215,7 +215,7 @@ export class FloatLogSliderView extends BaseIntSliderView {
215
215
216
216
if ( value !== this . model . get ( 'value' ) ) {
217
217
this . readout . textContent = this . valueToString ( value ) ;
218
- this . model . set ( 'value' , value , { updated_view : this } ) ;
218
+ this . model . set ( 'value' , value ) ;
219
219
this . touch ( ) ;
220
220
} else {
221
221
this . readout . textContent = this . valueToString ( this . model . get ( 'value' ) ) ;
Original file line number Diff line number Diff line change @@ -358,7 +358,7 @@ export class IntRangeSliderView extends BaseIntSliderView {
358
358
value [ 1 ] !== this . model . get ( 'value' ) [ 1 ]
359
359
) {
360
360
this . readout . textContent = this . valueToString ( value ) ;
361
- this . model . set ( 'value' , value , { updated_view : this } ) ;
361
+ this . model . set ( 'value' , value ) ;
362
362
this . touch ( ) ;
363
363
} else {
364
364
this . readout . textContent = this . valueToString ( this . model . get ( 'value' ) ) ;
@@ -452,7 +452,7 @@ export class IntSliderView extends BaseIntSliderView {
452
452
453
453
if ( value !== this . model . get ( 'value' ) ) {
454
454
this . readout . textContent = this . valueToString ( value ) ;
455
- this . model . set ( 'value' , value , { updated_view : this } ) ;
455
+ this . model . set ( 'value' , value ) ;
456
456
this . touch ( ) ;
457
457
} else {
458
458
this . readout . textContent = this . valueToString ( this . model . get ( 'value' ) ) ;
You can’t perform that action at this time.
0 commit comments