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; }