From 05a35207ea3cb83af9a64d16fa1f38a773512b71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Fri, 2 Dec 2011 23:28:21 +0100 Subject: [PATCH] remove js debug logs --- tabellio/agenda/folder_templates/view.pt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tabellio/agenda/folder_templates/view.pt b/tabellio/agenda/folder_templates/view.pt index 91f6bea..45d1a99 100644 --- a/tabellio/agenda/folder_templates/view.pt +++ b/tabellio/agenda/folder_templates/view.pt @@ -133,14 +133,10 @@ jq('#tabellio-agenda tbody a').click( function(event) { if (this.href.indexOf('#d-') != -1) { /* multiple events */ - console.log('multiple events'); - console.log('.'+this.href.split('#')[1]); eventdiv = jq('.'+this.href.split('#')[1]); } else { eventdiv = jq('#'+this.href.split('#')[1]); } - console.log('event div:', eventdiv); - console.log('event div css:', eventdiv.css('display')); if (eventdiv.css('display') != 'none') { eventdiv.fadeOut(); return false;