background: transparent;
}
+
#debugpane.loading {
- transition: none;
- background: #f99;
+ transition: none !important;
+ background: #ffc !important;
+}
+
+#overview.loading {
+ transition: none !important;
+ border-color: #ccd !important;
}
#overview {
.scalers tr:first-child {
border-bottom:1px solid #555;
}
+
+.head {
+ height:10px;
+}
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)
if(cb) {
cb(time);
}
+ if(document.getElementById("overview")){
+ document.getElementById("overview").classList.remove('loading');
+ }
//cb(xmlhttp.responseText);
//document.getElementById(destId).innerHTML = xmlhttp.responseText;
}