mirror of
https://github.com/KoboldAI/KoboldAI-Client.git
synced 2025-06-05 21:59:24 +02:00
@@ -2408,8 +2408,8 @@ function world_info_entry(data) {
|
|||||||
comment.setAttribute("uid", data.uid);
|
comment.setAttribute("uid", data.uid);
|
||||||
comment.value = data.comment;
|
comment.value = data.comment;
|
||||||
comment.onchange = function () {
|
comment.onchange = function () {
|
||||||
world_info_data[this.getAttribute('uid')]['comment'] = this.textContent;
|
world_info_data[data.uid].comment = this.value;
|
||||||
send_world_info(this.getAttribute('uid'));
|
send_world_info(data.uid);
|
||||||
this.classList.add("pulse");
|
this.classList.add("pulse");
|
||||||
}
|
}
|
||||||
comment.classList.remove("pulse");
|
comment.classList.remove("pulse");
|
||||||
|
Reference in New Issue
Block a user