From 17403ff05b830cea0b82158f0cdb2fff22697442 Mon Sep 17 00:00:00 2001 From: SillyLossy Date: Sun, 30 Apr 2023 18:47:55 +0300 Subject: [PATCH] Remove waiting animation again --- public/index.html | 2 +- public/scripts/extensions/caption/index.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/public/index.html b/public/index.html index 88bf1643c..9b01ec189 100644 --- a/public/index.html +++ b/public/index.html @@ -2120,7 +2120,7 @@
-
+
diff --git a/public/scripts/extensions/caption/index.js b/public/scripts/extensions/caption/index.js index ff6b5d1db..67d3a527a 100644 --- a/public/scripts/extensions/caption/index.js +++ b/public/scripts/extensions/caption/index.js @@ -17,7 +17,7 @@ async function setImageIcon() { try { const sendButton = document.getElementById('send_picture'); sendButton.classList.add('fa-image'); - sendButton.classList.remove('fa-hourglass-half', 'fa-fade'); + sendButton.classList.remove('fa-hourglass-half'); } catch (error) { console.log(error); @@ -28,7 +28,7 @@ async function setSpinnerIcon() { try { const sendButton = document.getElementById('send_picture'); sendButton.classList.remove('fa-image'); - sendButton.classList.add('fa-hourglass-half', 'fa-fade'); + sendButton.classList.add('fa-hourglass-half'); } catch (error) { console.log(error);