Bugfix for Author's Note Depth slider not doing anything.
This commit is contained in:
parent
f9bbb174a6
commit
2cc48e7163
|
@ -828,6 +828,10 @@ $(document).ready(function(){
|
||||||
hideNewStoryPopup();
|
hideNewStoryPopup();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
anote_slider.on("input", function () {
|
||||||
|
socket.send({'cmd': 'anotedepth', 'data': $(this).val()});
|
||||||
|
});
|
||||||
|
|
||||||
saveasinput.on("input", function () {
|
saveasinput.on("input", function () {
|
||||||
if(saveasinput.val() == "") {
|
if(saveasinput.val() == "") {
|
||||||
disableButtons([saveas_accept]);
|
disableButtons([saveas_accept]);
|
||||||
|
|
Loading…
Reference in New Issue