We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello guys, is there any way to make thumbnails clickable? I think that would be a great feature!
The text was updated successfully, but these errors were encountered:
Hey @DivvyPT, as a quick workaround, I added this JS to grab the favorite link, and then wrap the thumbnail image with it.
document.addEventListener('DOMContentLoaded', (event) => { let anchorLinks = document.querySelectorAll(".favorites-list p:nth-child(2) > a"); anchorLinks.forEach((anchorLink) => { let image = anchorLink.parentNode.previousElementSibling.querySelector("img"); let imageWrappedAnchor = document.createElement("a"); imageWrappedAnchor.setAttribute("href", `${anchorLink.href}`); imageWrappedAnchor.appendChild(image); anchorLink.parentNode.previousElementSibling.appendChild(imageWrappedAnchor); }); });
Sorry, something went wrong.
No branches or pull requests
Hello guys, is there any way to make thumbnails clickable?
I think that would be a great feature!
The text was updated successfully, but these errors were encountered: