mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2025-01-10 17:02:54 +01:00
#2371 Checks footnote target before overriding browser default behavior
This commit is contained in:
parent
7a17c1e8aa
commit
97b783db38
@ -140,12 +140,17 @@
|
||||
if (targetId) break;
|
||||
}
|
||||
if (targetId === undefined) return;
|
||||
|
||||
|
||||
// Only override the default behaviour when we know we can find the
|
||||
// target element
|
||||
const targetElement = document.querySelector(`[id='${targetId}']`);
|
||||
if (targetElement === null) return;
|
||||
|
||||
ev.preventDefault();
|
||||
|
||||
installContainer(ev.target);
|
||||
const content = document.querySelector(`[id='${targetId}']`).innerHTML;
|
||||
void new Footnote(content, ev.target);
|
||||
|
||||
void new Footnote(targetElement.innerHTML, ev.target);
|
||||
});
|
||||
|
||||
// Handle clicks on the footnote reverse link
|
||||
|
Loading…
Reference in New Issue
Block a user