Fix Firefox number arrows not updating the slider
This commit is contained in:
parent
b7a338e130
commit
db3bf42d63
|
@ -9581,6 +9581,10 @@ jQuery(async function () {
|
|||
valueBeforeManualInput = $(this).val();
|
||||
console.log(valueBeforeManualInput);
|
||||
})
|
||||
.on('change', function (e) {
|
||||
e.target.focus();
|
||||
e.target.dispatchEvent(new Event('keyup'));
|
||||
})
|
||||
.on('keydown', function (e) {
|
||||
const masterSelector = '#' + $(this).data('for');
|
||||
const masterElement = $(masterSelector);
|
||||
|
|
Loading…
Reference in New Issue