We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 096f430 commit 99aad7dCopy full SHA for 99aad7d
index.js
@@ -9,7 +9,7 @@ module.exports = {
9
},
10
hooks: {
11
init: async function () {
12
- console.warn("Starting Datatables plugin...");
+
13
14
"page": function(page) {
15
// Inspect page contents and initialize all tables that carry the datatables class
@@ -21,7 +21,6 @@ module.exports = {
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
- console.warn("Set table "+index+" id to "+$(this).attr('id'));
25
}
26
$(this).attr("data-dt-process", "true");
27
});
0 commit comments