Mercurial > hg > nodescore
view www/m/js/countin.js @ 54:66bf613fb818
pre clean up push - moved vars into scoreB.js - called up with requirejs
added requirejs dep
author | tzara <rc-web@kiben.net> |
---|---|
date | Wed, 19 Dec 2012 13:36:19 +0000 |
parents | 40253bcfce03 |
children |
line wrap: on
line source
///////////////////////////////////////////////// // countdown to change var socket = io.connect(); socket.on("countinFromServer", countinClient); function countinClient(groupID, currentseconds,mm,text,colour,background){ var groupPage=document.getElementById('group').value if (groupID == groupPage) { console.log(currentseconds); document.getElementById("countinnumber").style.visibility="visible"; document.getElementById("countinnumber").style.visibility="visible"; //$("#countin").text(text); $("#countinnumber").text(currentseconds); $("#countinnumber").css('background-color', background); document.getElementById("countinnumber").style.color=colour; if ( currentseconds == 0) { document.getElementById("countinnumber").style.visibility='hidden'; // document.getElementById("countin").style.visibility='hidden'; } }} /////////////////////////////////////////////////