diff --git a/htdocs/index.wrx b/htdocs/index.wrx
index c4f828f..d91bb80 100644
--- a/htdocs/index.wrx
+++ b/htdocs/index.wrx
@@ -119,10 +119,8 @@
diff --git a/htdocs/openwebrx.js b/htdocs/openwebrx.js
index 723194d..3ac14ae 100644
--- a/htdocs/openwebrx.js
+++ b/htdocs/openwebrx.js
@@ -219,6 +219,15 @@ function setSmeterAbsoluteValue(value) //the value that comes from `csdr squelch
e("openwebrx-smeter-db").innerHTML=logValue.toFixed(1)+" dB";
}
+function typeInAnimation(element,timeout,what,onFinish)
+{
+ if(!what) { onFinish(); return; }
+ element.innerHTML+=what[0];
+ window.setTimeout( function(){typeInAnimation(element,timeout,what.substring(1),onFinish);}, timeout );
+}
+
+
+
// ========================================================
// ================= ANIMATION ROUTINES =================
@@ -1588,7 +1597,7 @@ function audio_init()
animate(e("openwebrx-panel-log"),"opacity","",1,0,0.9,1000,60);
window.setTimeout(function(){toggle_panel("openwebrx-panel-log");e("openwebrx-panel-log").style.opacity="1";},1200)
}
- },1000);
+ },2000);
}
function on_ws_closed()