UpdateModel method updated for range mode

pull/3769/head
Bahadır Sofuoğlu 2023-03-19 18:50:19 +03:00
parent eb3aae9557
commit ae79ad91cf
1 changed files with 3 additions and 14 deletions

View File

@ -155,24 +155,12 @@ export default {
if (newValue < this.min) newValue = this.min; if (newValue < this.min) newValue = this.min;
else if (newValue >= this.max) newValue = this.max; else if (newValue >= this.max) newValue = this.max;
if (newValue > modelValue[1]) { modelValue[0] = newValue;
modelValue[1] = newValue;
this.handleIndex = 1;
} else {
modelValue[0] = newValue;
}
} else { } else {
if (newValue > this.max) newValue = this.max; if (newValue > this.max) newValue = this.max;
else if (newValue <= this.min) newValue = this.min; else if (newValue <= this.min) newValue = this.min;
if (newValue < modelValue[0]) { modelValue[1] = newValue;
modelValue[0] = newValue;
this.handleIndex = 0;
} else {
modelValue[1] = newValue;
}
} }
} else { } else {
if (newValue < this.min) newValue = this.min; if (newValue < this.min) newValue = this.min;
@ -199,6 +187,7 @@ export default {
this.handleIndex = index; this.handleIndex = index;
} }
event.currentTarget.focus();
event.preventDefault(); event.preventDefault();
}, },
onDrag(event) { onDrag(event) {