disable debug logs

This commit is contained in:
Nemo 2023-11-29 11:37:31 +05:30
parent 28860b40f7
commit 3f85255082
1 changed files with 4 additions and 3 deletions

View File

@ -80,10 +80,11 @@ document.addEventListener('DOMContentLoaded', function () {
document.body.appendChild(scriptTag);
scriptTag.onload = function() {
var markInstance = new Mark(
Array.from(document.querySelectorAll(".story-content"))
.concat(Array.from(document.querySelectorAll(".story-heading")))
Array.from(
document.querySelectorAll(".story-content"))
.concat(Array.from(document.querySelectorAll(".story-heading"))
)
);
console.log(words)
markInstance.mark(JSON.parse(words), {});
}
}