Bugfix for Author's Note Depth slider not doing anything.

This commit is contained in:
KoboldAI Dev 2021-05-22 22:06:10 -04:00
parent f9bbb174a6
commit 2cc48e7163
1 changed files with 4 additions and 0 deletions

View File

@ -828,6 +828,10 @@ $(document).ready(function(){
hideNewStoryPopup();
});
anote_slider.on("input", function () {
socket.send({'cmd': 'anotedepth', 'data': $(this).val()});
});
saveasinput.on("input", function () {
if(saveasinput.val() == "") {
disableButtons([saveas_accept]);