Skip to content

Commit 9d26e36

Browse files
committed
remove debugging statements from javascript
1 parent 24eec65 commit 9d26e36

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

script/AggregationEditor.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,16 +82,12 @@ const AggregationEditor = function (idx, table) {
8282
const $children = $row.children();
8383
let insertAt = searchconf.actcol;
8484
if ( insertAt < 0 ) insertAt = $children.length + 1 + insertAt;
85-
console.log("insertAt", insertAt);
8685

8786
if(insertAt >= $children.length) {
88-
console.log("append");
8987
$row.append($cell);
9088
} else if (insertAt < 0) {
91-
console.log("prepend");
9289
$row.prepend($cell);
9390
} else {
94-
console.log("insertBefore");
9591
$children.eq(insertAt).before($cell);
9692
}
9793
}

0 commit comments

Comments
 (0)