From 9d26e36ded7cf6066b458141963572b35338c6f0 Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Mon, 12 May 2025 11:47:19 +0200 Subject: [PATCH] remove debugging statements from javascript --- script/AggregationEditor.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/script/AggregationEditor.js b/script/AggregationEditor.js index 057c623..b1d49b8 100644 --- a/script/AggregationEditor.js +++ b/script/AggregationEditor.js @@ -82,16 +82,12 @@ const AggregationEditor = function (idx, table) { const $children = $row.children(); let insertAt = searchconf.actcol; if ( insertAt < 0 ) insertAt = $children.length + 1 + insertAt; - console.log("insertAt", insertAt); if(insertAt >= $children.length) { - console.log("append"); $row.append($cell); } else if (insertAt < 0) { - console.log("prepend"); $row.prepend($cell); } else { - console.log("insertBefore"); $children.eq(insertAt).before($cell); } }