i,j,k 키를 눌러보세요
도메인 변경 대비 코드 수정
function markVisitedLinks() {
const links = document.querySelectorAll(".post-row a");
for (const link of links) {
const url = link.getAttribute('href');
const path = new URL(url).pathname
if (localStorage.getItem(path)) {
link.style.color = "#e2e2e2";
}
link.addEventListener("click", function() {
localStorage.setItem(path, true);
});
}
어떤 부분이 바뀌었는지 알기 힘들어서 그런데 https://github.com/nanikit/comic_sources/pulls 여기에 PR로 작성해주실 수 있나요?
몇가지 기능 추가한 코드 공유드립니다.