From e36eb17ac8b1a9dd003a87010afd67d07dd07386 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=AD=C3=B0ir=20Valberg=20Gu=C3=B0mundsson?= Date: Fri, 21 Apr 2017 01:37:43 +0200 Subject: [PATCH] Removing all those console.log's --- src/program/static/js/event_instance_websocket.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/program/static/js/event_instance_websocket.js b/src/program/static/js/event_instance_websocket.js index 62cda220..e81f6153 100644 --- a/src/program/static/js/event_instance_websocket.js +++ b/src/program/static/js/event_instance_websocket.js @@ -62,7 +62,6 @@ webSocketBridge.listen(function(payload, stream) { } if(payload['action'] == 'init') { EVENT_INSTANCES = payload['event_instances']; - console.log(EVENT_INSTANCES); DAYS = payload['days']; render_schedule([], []); } @@ -139,9 +138,6 @@ function get_instances(types, locations) { if(types.length != 0) { event_instances = event_instances.filter( function(event_instance) { - console.log(event_instance['event_type']); - console.log(types); - console.log(event_instance['event_type'] in types); return types.includes(event_instance['event_type']); } );