remove console.log from javascript

* fix bug 962733

Change-Id: I40cd226dae2d02a032d3ec40730d850636efea32
This commit is contained in:
Andy Chong 2012-03-21 11:02:25 +08:00
parent ab71aff23f
commit 08055cf9ee

View File

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