show idle tuner as "IDLE" instead of nothing

This commit is contained in:
none 2020-04-27 21:35:13 +02:00
parent 80e076c89a
commit df66554616
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ function Show(TunerList)
if( TunerList[i].Status == "Active" )
document.getElementById("tdStatus"+i).firstChild.nodeValue = "No Signal";
else
document.getElementById("tdStatus"+i).firstChild.nodeValue = "";
document.getElementById("tdStatus"+i).firstChild.nodeValue = "IDLE";
document.getElementById("tdStrength"+i).firstChild.nodeValue = "";
document.getElementById("tdSNR"+i).firstChild.nodeValue = "";
document.getElementById("tdQuality"+i).firstChild.nodeValue = "";