mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Fix Firefox number arrows not updating the slider
This commit is contained in:
@ -9580,6 +9580,10 @@ jQuery(async function () {
|
||||
$('.range-block-counter input, .neo-range-input').on('click', 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');
|
||||
|
Reference in New Issue
Block a user