mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-04 21:37:38 +03:00
feat: support direct annotation links
This commit is contained in:
parent
a614f9b2a0
commit
42e0625695
5 changed files with 36 additions and 8 deletions
|
@ -8,8 +8,17 @@ function showAbout() {
|
|||
|
||||
fullAbout && [fullAbout, summary].forEach(item => item.onclick = showAbout)
|
||||
|
||||
document.querySelectorAll("#lyrics a").forEach(item => {
|
||||
item.addEventListener("click", getAnnotation)
|
||||
window.addEventListener("load", () => {
|
||||
document.querySelectorAll("#lyrics a").forEach(item => {
|
||||
item.addEventListener("click", getAnnotation)
|
||||
})
|
||||
|
||||
const linkedAnnotationId = window.location.pathname.match(new RegExp("/(\\d+)"))?.[1]
|
||||
if (linkedAnnotationId) {
|
||||
const target = document.querySelector(`a[href^="/${linkedAnnotationId}"][class^="ReferentFragmentdesktop__ClickTarget"] > span`)
|
||||
target?.click()
|
||||
target?.scrollIntoView()
|
||||
}
|
||||
})
|
||||
|
||||
function getAnnotation(e) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue