From 6f3ba6a4785a22b5dfd785186a612148b4c71845 Mon Sep 17 00:00:00 2001 From: Jack Allnutt Date: Tue, 19 Jul 2011 06:40:13 +0100 Subject: [PATCH] removing unneeded debugging calls --- js/gateway.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/js/gateway.js b/js/gateway.js index 5fe294c..320f8b7 100644 --- a/js/gateway.js +++ b/js/gateway.js @@ -16,7 +16,6 @@ var gateway = { if (typeof kiwi_server !== 'undefined') { gateway.socket = io.connect(kiwi_server); gateway.socket.on('connect', function () { - console.debug("Connecting to " + kiwi_server); gateway.sendData = function (data, callback) { gateway.socket.emit('message', {sid: this.session_id, data: $.toJSON(data)}, callback); }; @@ -53,7 +52,6 @@ var gateway = { debug */ parse: function (item) { - console.debug('a',item); if (item.event !== undefined) { $(gateway).trigger("on" + item.event, item); -- 2.25.1