This commit is contained in:
ehpersonal38
2022-06-02 09:10:25 -04:00
parent 7ff0c569b4
commit 0e00b55ab0
+1 -1
View File
@@ -327,7 +327,7 @@ window.addEventListener("load", function(){
// every $refresh seconds, this loop will run and refresh the spectrogram image
window.setInterval(function(){
document.getElementById("chart").src = "/Charts/<?php echo $chart;?>?nocache="+Date.now();
document.getElementById("chart").src = "/Charts/Combo-"+new Date().toISOString().slice(0, 10)+".png?nocache="+Date.now();
document.getElementById("spectrogramimage").src = "/spectrogram.png?nocache="+Date.now();
}, <?php echo $refresh; ?>*1000);
</script>