From 08055cf9ee29029bd860aaf0ba20822594401dfa Mon Sep 17 00:00:00 2001 From: Andy Chong Date: Wed, 21 Mar 2012 11:02:25 +0800 Subject: [PATCH] remove console.log from javascript * fix bug 962733 Change-Id: I40cd226dae2d02a032d3ec40730d850636efea32 --- horizon/static/horizon/js/horizon.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/horizon/static/horizon/js/horizon.js b/horizon/static/horizon/js/horizon.js index 4af85a59d..fc5bdc814 100644 --- a/horizon/static/horizon/js/horizon.js +++ b/horizon/static/horizon/js/horizon.js @@ -97,10 +97,8 @@ var Horizon = function() { if(row_count === 0) { colspan = $footer.find('td').attr('colspan'); template = horizon.templates.compiled_templates["#empty_row_template"]; - console.log(template); params = {"colspan": colspan}; empty_row = template.render(params); - console.log(empty_row); $row.replaceWith(empty_row); } else { $row.remove();