]> jspc29.x-matter.uni-frankfurt.de Git - daqtools.git/commitdiff
add a flashing signal to xml web pages when clicking a single bit register
authorJan Michel <michel@physik.uni-frankfurt.de>
Fri, 18 Nov 2022 08:15:51 +0000 (09:15 +0100)
committerJan Michel <michel@physik.uni-frankfurt.de>
Fri, 18 Nov 2022 08:16:41 +0000 (09:16 +0100)
web/htdocs/layout/blue.css
web/htdocs/scripts/scriptsnew.js
web/htdocs/scripts/xmlpage.js

index f8656769dfe3fe89e02618b37cd60a1773c7af7b..edccf8866a93e164c4f07bb7fb19ed16ae88091e 100644 (file)
@@ -41,7 +41,13 @@ body {
   float:left;
   width:1000px;
   margin:50px 0 0 20px;  
+  transition: 100ms all linear;
+  background: transparent;
+}
 
+#debugpane.loading {
+  transition: none;
+  background: #f99;
 }
 
 #overview {
index 8d361722418872deabaacd3d3e33ec9934342e3f..9ee843f0d1ae4b319295d42f182b0dc6eb3a9178 100644 (file)
@@ -32,7 +32,7 @@ function getdataprint(command,dId,async,time,callback) {
   var cmd = command;
   var asynci = async;
   var timei  = time;
-  
+
   xmlhttp.onreadystatechange = function() {
     if(xmlhttp.readyState == 4 && xmlhttp.status==200) {
       //if(cb)
@@ -72,6 +72,9 @@ function getdataprint(command,dId,async,time,callback) {
         cb(time);
         }
       }
+    if(document.getElementById("debugpane")){
+      document.getElementById("debugpane").classList.remove('loading');
+      }
     }
 
   xmlhttp.open("GET",command,async);
index e944082cde966a0effdce6abf3ddd399f7fb65b9..4620cabde4d41df2a5c633882ae5b24ba618ef65 100644 (file)
@@ -7,6 +7,9 @@
           getdataprint('../xml-db/put.pl?'+e.target.parentNode.getAttribute("cstr")+'-'+'1','returntext',false,-1,refresh);
         if ( parseInt(e.target.parentNode.getAttribute("raw")) == 1 )
           getdataprint('../xml-db/put.pl?'+e.target.parentNode.getAttribute("cstr")+'-'+'0','returntext',false,-1,refresh);
+        if(document.getElementById("debugpane")){
+          document.getElementById("debugpane").classList.add('loading');
+          }
         return;
       }
       var text = e.target.parentNode.getAttribute("cstr");