From bbabfb0a6604b315584b7aa3038a39460b28d326 Mon Sep 17 00:00:00 2001 From: opi Date: Mon, 16 Jun 2014 16:15:28 +0200 Subject: [PATCH] [fix] Comment out console.log call. --- js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/app.js b/js/app.js index 0a65f2af..826fa511 100644 --- a/js/app.js +++ b/js/app.js @@ -233,7 +233,7 @@ app = Sammy('#main', function (sam) { // Open a WebSocket connection to retrieve live messages from the moulinette ws = new WebSocket('wss://'+ store.get('url') +'/messages'); ws.onmessage = function(evt) { - console.log(evt.data); + // console.log(evt.data); $.each($.parseJSON(evt.data), function(k, v) { c.flash(k, v); });