implemented action-based startup of routes

This commit is contained in:
Stephan Richter
2020-11-13 14:41:17 +01:00
parent f2ee754064
commit bb983c9736
14 changed files with 234 additions and 81 deletions

View File

@@ -23,7 +23,7 @@ function addClass(data){
function addMessage(txt){
$('#messages').html(txt);
if (messageTimer != null) window.clearInterval(messageTimer);
messageOpacity = 300;
messageOpacity = 3000;
messageTimer = setInterval(fadeMessage,100);
}