Skip to content

Commit f8969fe

Browse files
committed
remove debug msg
1 parent 99aad7d commit f8969fe

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

index.js

-2
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,11 @@ module.exports = {
1818

1919
// Iterate around all the tables marked as datatables and collect their element id
2020
$('table[class=datatable]').each(function( index ) {
21-
console.debug("Processing table "+index);
2221
if ( $(this).attr('id') === undefined ){
2322
$(this).attr('id',`datatable-${crypto.randomBytes(16).toString('base64').substring(0, 16)}`);
2423
}
2524
$(this).attr("data-dt-process", "true");
2625
});
27-
2826
page.content = $.html();
2927

3028
return page;

0 commit comments

Comments
 (0)