diff --git a/public/index.html b/public/index.html
index bf858d1cb..7f6c54a25 100644
--- a/public/index.html
+++ b/public/index.html
@@ -122,6 +122,29 @@
var bg1_toggle = true;
var css_mes_bg = $('
').css('background');
var css_send_form_display = $('').css('display');
+
+ var colab_ini_step = 1;
+ setInterval(function() {
+ console.log(colab_ini_step);
+ switch(colab_ini_step){
+ case 0:
+ $('#colab_popup_text').html('Initialization
');
+ colab_ini_step = 1;
+ break
+ case 1:
+ $('#colab_popup_text').html('Initialization.
');
+ colab_ini_step = 2;
+ break
+ case 2:
+ $('#colab_popup_text').html('Initialization..
');
+ colab_ini_step = 3;
+ break
+ case 3:
+ $('#colab_popup_text').html('Initialization...
');
+ colab_ini_step = 0;
+ break
+ }
+ }, 500);
/////////////
getSettings("def");
@@ -339,6 +362,7 @@
if (response.ok === true) {
const getData = await response.json();
if(getData.colaburl != false){
+ $('colab_shadow_popup').css('display', 'none');
is_colab = true;
let url = String(getData.colaburl).split("flare.com")[0] + "flare.com";
$('#api_url_text').val(url);
@@ -2657,6 +2681,11 @@
+
+
+