From 8f15e62f52cdeaeebbf0f9e846925ac379d4d38c Mon Sep 17 00:00:00 2001 From: Jan Michel Date: Sat, 10 Jun 2023 15:54:00 +0200 Subject: [PATCH] xml pages: slight blinking to show updates --- web/htdocs/layout/blue.css | 14 ++++++++++++-- web/htdocs/scripts/scriptsnew.js | 8 +++++++- 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/web/htdocs/layout/blue.css b/web/htdocs/layout/blue.css index edccf88..436716c 100644 --- a/web/htdocs/layout/blue.css +++ b/web/htdocs/layout/blue.css @@ -45,9 +45,15 @@ body { background: transparent; } + #debugpane.loading { - transition: none; - background: #f99; + transition: none !important; + background: #ffc !important; +} + +#overview.loading { + transition: none !important; + border-color: #ccd !important; } #overview { @@ -449,3 +455,7 @@ table.scalers td:first-child{ .scalers tr:first-child { border-bottom:1px solid #555; } + +.head { + height:10px; +} diff --git a/web/htdocs/scripts/scriptsnew.js b/web/htdocs/scripts/scriptsnew.js index 9ee843f..cac4817 100644 --- a/web/htdocs/scripts/scriptsnew.js +++ b/web/htdocs/scripts/scriptsnew.js @@ -32,7 +32,10 @@ function getdataprint(command,dId,async,time,callback) { var cmd = command; var asynci = async; var timei = time; - + if(document.getElementById("overview")){ + document.getElementById("overview").classList.add('loading'); + } + xmlhttp.onreadystatechange = function() { if(xmlhttp.readyState == 4 && xmlhttp.status==200) { //if(cb) @@ -63,6 +66,9 @@ function getdataprint(command,dId,async,time,callback) { if(cb) { cb(time); } + if(document.getElementById("overview")){ + document.getElementById("overview").classList.remove('loading'); + } //cb(xmlhttp.responseText); //document.getElementById(destId).innerHTML = xmlhttp.responseText; } -- 2.43.0