window.addEventListener('pageshow', function (event) {
// Find all elements that Readymag has marked as "clicked"
const clickedElements = document.querySelectorAll('[data-rm-clicked="true"]');
clickedElements.forEach(function (element) {
// Force the click animation state back to false (unclicked)
element.setAttribute('data-rm-clicked', 'false');
});
});