mirror of
https://github.com/KoboldAI/KoboldAI-Client.git
synced 2025-06-05 21:59:24 +02:00
Merge commit '8a38b258f497281af06fcb0c2559f382b419b938' into overhaul-merge
This commit is contained in:
@ -2231,6 +2231,10 @@ $(document).ready(function(){
|
||||
// Send current typical value to input
|
||||
$("#settypicalcur").val(msg.data);
|
||||
$("#settypical").val(parseFloat(msg.data)).trigger("change");
|
||||
} else if(msg.cmd == "updatetopa") {
|
||||
// Send current top a value to input
|
||||
$("#settopacur").val(msg.data);
|
||||
$("#settopa").val(parseFloat(msg.data)).trigger("change");
|
||||
} else if(msg.cmd == "updatereppen") {
|
||||
// Send current rep pen value to input
|
||||
$("#setreppencur").val(msg.data);
|
||||
@ -2270,6 +2274,9 @@ $(document).ready(function(){
|
||||
} else if(msg.cmd == "setlabeltypical") {
|
||||
// Update setting label with value from server
|
||||
$("#settypicalcur").val(msg.data);
|
||||
} else if(msg.cmd == "setlabeltypical") {
|
||||
// Update setting label with value from server
|
||||
$("#settopa").val(msg.data);
|
||||
} else if(msg.cmd == "setlabelreppen") {
|
||||
// Update setting label with value from server
|
||||
$("#setreppencur").val(msg.data);
|
||||
|
Reference in New Issue
Block a user