We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99aad7d commit f8969feCopy full SHA for f8969fe
index.js
@@ -18,13 +18,11 @@ module.exports = {
18
19
// Iterate around all the tables marked as datatables and collect their element id
20
$('table[class=datatable]').each(function( index ) {
21
- console.debug("Processing table "+index);
22
if ( $(this).attr('id') === undefined ){
23
$(this).attr('id',`datatable-${crypto.randomBytes(16).toString('base64').substring(0, 16)}`);
24
}
25
$(this).attr("data-dt-process", "true");
26
});
27
-
28
page.content = $.html();
29
30
return page;
0 commit comments