[fix] Comment out console.log call.

This commit is contained in:
opi 2014-06-16 16:15:28 +02:00
parent f4a1f3b9b8
commit bbabfb0a66

View file

@ -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);
});