Sha256: b2b7777d0763103e9c033103ab316dd215fa6848d8a1d3d0ee849b6857cb9047
Contents?: true
Size: 469 Bytes
Versions: 15
Compression:
Stored size: 469 Bytes
Contents
/** * Scroll smoothly to the last message automatically when the page is fully loaded. * To apply this to a page, at least one element must have the class "scroll-to-last-message". * @returns {void} */ const scrollToLastMessage = () => { if ($(".scroll-to-last-message").length > 0) { window.scrollTo({ top: $(".conversation-chat:last-child").offset().top, behavior: "smooth" }); } }; $(document).ready(() => { scrollToLastMessage(); });
Version data entries
15 entries across 15 versions & 1 rubygems