From 410e105e262e8b43cf11a9fcad8bccec4cb6ade4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Mon, 5 Dec 2011 10:58:07 +0100 Subject: [PATCH] remove debugging js log --- themis/fields/widgets.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/themis/fields/widgets.py b/themis/fields/widgets.py index 389e1c1..0c863aa 100644 --- a/themis/fields/widgets.py +++ b/themis/fields/widgets.py @@ -159,10 +159,8 @@ def RadioChoiceFieldWidget(field, request): class OrderedSelectAndAddWidget(OrderedSelectWidget): implementsOnly(IOrderedSelectAndAddWidget) - formatItem = '''function(row, idx, count, value) { console.log(row, idx, - count, value); return row[1]; }''' - formatResult = '''function(row, idx, count) { console.log("t2", row, idx, - count); return ""; }''' + formatItem = '''function(row, idx, count, value) { return row[1]; }''' + formatResult = '''function(row, idx, count) { return ""; }''' js_template = """\