mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
12 lines
365 B
JavaScript
12 lines
365 B
JavaScript
function handleQuoteClick(reply) {
|
|||
|
|
const cid = reply.shortCid;
|
||
|
|
const targetElement = [...document.querySelectorAll('.post-reply')]
|
||
|
|
.find(el => el.innerHTML.includes(cid));
|
||
|
|
if (targetElement) {
|
||
|
|
targetElement.scrollIntoView({ behavior: "instant" });
|
||
|
|
} else {
|
||
|
|
console.log('Could not find target element');
|
||
|
|
}
|
||
|
|
};
|
||
|
|
|
||
|
|
export default handleQuoteClick;
|