This commit is contained in:
mynah
2018-08-14 19:28:16 -05:00
parent 8a99022caa
commit 471c05e7c9
4 changed files with 22 additions and 12 deletions

View File

@@ -8,8 +8,10 @@ checkChat();
function checkChat(){
d3.json("/json/candy/isOn",function(d){
if(d != undefined){
if (d.a==1) { d3.select("#clink").style("visibility","visible");}
else if (d.a==0) { d3.select("#clink").style("visibility","hidden");}
if (d.a=="connection error"){
d3.select("#clink").style("visibility","hidden");}
else if (d.a=="1") { d3.select("#clink").style("visibility","visible");}
else if (d.a=="0") { d3.select("#clink").style("visibility","hidden");}
}
else {
d3.select("#clink").style("visibility","hidden");