Open mrkkr opened 4 years ago
Hello, I have implemented as documented and sticky-js works only in Chrome. On FF, Edge, EI11 doesn't run the script at all. Optional attributes are in HTML tags.
My code:
import Sticky from "sticky-js/dist/sticky.compile"; const stickySidebarFunc = () => { new Sticky(".sidebar__content", {}); }; document.addEventListener("DOMContentLoaded", () => { const stickyForm = document.querySelector(".sidebar__content"); stickyForm ? stickySidebarFunc() : null; });
Working on FF for me
Hello, I have implemented as documented and sticky-js works only in Chrome. On FF, Edge, EI11 doesn't run the script at all. Optional attributes are in HTML tags.
My code: