Start working on theming

This commit is contained in:
calzoneman 2014-01-25 13:49:34 -06:00
parent 63ed9c7883
commit e70be5df42
6 changed files with 185 additions and 62 deletions

View file

@ -1032,7 +1032,7 @@ setupCallbacks = function() {
for(var key in Callbacks) {
(function(key) {
socket.on(key, function(data) {
if(SOCKET_DEBUG)
if (SOCKET_DEBUG)
console.log(key, data);
Callbacks[key](data);
});