From 3f85255082426eddc009e25e37192fca276a0f6e Mon Sep 17 00:00:00 2001 From: Nemo Date: Wed, 29 Nov 2023 11:37:31 +0530 Subject: [PATCH] disable debug logs --- _includes/app.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/_includes/app.js b/_includes/app.js index b7d04ae..bf71b4e 100644 --- a/_includes/app.js +++ b/_includes/app.js @@ -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), {}); } }