Skip to content

Commit

Permalink
보이지않는 중복 링크는 열지 않음
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleDEV committed Jul 7, 2024
1 parent 9862b46 commit 016bf2b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions theme/damoang/layout/basic/js/open_all_link_on_economy.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ async function openAllLinksInUserContent() {
userTexts.forEach(userText => {
var links = userText.querySelectorAll('a');
links.forEach(link => {
//이미지에 걸린 링크는 제외
if (!link.querySelector('img')) {
// 1) 이미지에 대한 링크 제외
// 2) 보이지않는 링크 열지 않음 - innerText가 없는 <a>태그의 링크는 제외 (글쓰기 에디터문제인지 본문에 가끔 텍스트 없는 <a>태그로 중복되는 링크가 있음)
if (!link.querySelector('img') && link.innerText.trim() !== "") {
allLinks.push(link.href);
}
});
Expand Down

0 comments on commit 016bf2b

Please sign in to comment.