From cd5bc9bec05ffbde8a154f06175776cdd30ee2ff Mon Sep 17 00:00:00 2001 From: hippoz Date: Sun, 25 Oct 2020 18:35:25 +0200 Subject: [PATCH] remove console.log's that are no longer needed --- res/blog.js | 2 -- res/index.js | 1 - 2 files changed, 3 deletions(-) diff --git a/res/blog.js b/res/blog.js index 24d04c3..a8cdac3 100644 --- a/res/blog.js +++ b/res/blog.js @@ -4,12 +4,10 @@ const blogArticles = { const blogPopulateArticleList = (elementId) => { const element = A(`#${elementId}`); - console.log(element); let html = ''; for (const [k, v] of Object.entries(blogArticles)) { html += `${k}`; - console.log(html); } element.html(html); diff --git a/res/index.js b/res/index.js index 3f9adbf..3ca1e89 100644 --- a/res/index.js +++ b/res/index.js @@ -121,7 +121,6 @@ const updateFromCurrentPathname = () => { for (const [route, action] of Object.entries(dynamicRoutesActions)) { if (pathname.startsWith(route)) { const arg = stripTrailingSlash(pathname).split('/')[2]; - console.log(arg); action(arg); break; }