]> jspc29.x-matter.uni-frankfurt.de Git - daqtools.git/commitdiff
xml pages: slight blinking to show updates
authorJan Michel <michel@physik.uni-frankfurt.de>
Sat, 10 Jun 2023 13:54:00 +0000 (15:54 +0200)
committerJan Michel <michel@physik.uni-frankfurt.de>
Sat, 10 Jun 2023 13:54:00 +0000 (15:54 +0200)
web/htdocs/layout/blue.css
web/htdocs/scripts/scriptsnew.js

index edccf8866a93e164c4f07bb7fb19ed16ae88091e..436716c96f6eb2f1c9d06b84b045fcad0984d8b3 100644 (file)
@@ -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;
+}
index 9ee843f0d1ae4b319295d42f182b0dc6eb3a9178..cac48176e2d0dbabb20615b593e094a7e53c5f21 100644 (file)
@@ -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;  
       }