mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
- converted UI img SVGs to webfonts
- moved unused SVGs and PNGs into subfolders for deletion consideration
This commit is contained in:
@@ -203,7 +203,8 @@ function RA_checkOnlineStatus() {
|
||||
$("#send_textarea").attr("placeholder", "Not connected to API!"); //Input bar placeholder tells users they are not connected
|
||||
$("#send_form").addClass('no-connection'); //entire input form area is red when not connected
|
||||
$("#send_but").css("display", "none"); //send button is hidden when not connected;
|
||||
$("#API-status-top").addClass("redOverlayGlow");
|
||||
$("#API-status-top").removeClass("fa-plug");
|
||||
$("#API-status-top").addClass("fa-plug-circle-exclamation redOverlayGlow");
|
||||
connection_made = false;
|
||||
} else {
|
||||
if (online_status !== undefined && online_status !== "no_connection") {
|
||||
@@ -212,7 +213,8 @@ function RA_checkOnlineStatus() {
|
||||
/* console.log("RA-AC -- connected, coloring input as " + formColor); */
|
||||
$('#send_form').removeClass("no-connection");
|
||||
$("#send_form").css("background-color", formColor); //on connect, form BG changes to transprent black
|
||||
$("#API-status-top").removeClass("redOverlayGlow");
|
||||
$("#API-status-top").removeClass("fa-plug-circle-exclamation redOverlayGlow");
|
||||
$("#API-status-top").addClass("fa-plug");
|
||||
connection_made = true;
|
||||
retry_delay = 100;
|
||||
RA_AC_retries = 1;
|
||||
|
Reference in New Issue
Block a user