This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript: (() => { function cardHoverListener() { | |
let hoveredCard = undefined; | |
const observer = new MutationObserver((mutationList) => { | |
for (const list of mutationList) { | |
if (list.type === "childList") { | |
for (const node of list.addedNodes) { | |
if (node.classList.contains("img-container")) { | |
setupListeners(node); | |
} |