$(document).ready(function() { // Check if URL has 'emailReferral' parameter let modalContainer = $('.block-component-popup-modal'); let urlParams = new URLSearchParams(window.location.search); let setParameter = $(modalContainer).attr('data-parameter'); if(urlParams.has(setParameter)) { $(modalContainer).show(); } // Close modal when clicking on 'modalClose' $('.block-component-popup-modal--close').click(function() { $(modalContainer).hide(); }); // Close modal when clicking outside of it $(window).click(function(e) { if($(e.target).is('.block-component-popup-modal')) { $('.block-component-popup-modal').hide(); } }); }); ; /* Reading time function -------------------------------------------------------------- */ const mainElement = jQuery('main'); const mainContent = mainElement.text(); const wordCount = mainContent.split(' ').length; const readingTime = Math.ceil(wordCount / 700); const postMetaElement = jQuery('.post-reading-time'); postMetaElement.text(`${readingTime} min read`); jQuery(document).ready(function(){ jQuery('.block-heros-v8 li.fundraiser-card a').on('click', function(event){ event.preventDefault(); }); }); ; /* Wrap all iframe in special wrapper so they can be made responsive -------------------------------------------------------------- */ jQuery('.block-long-form-content-v1 iframe').wrap('
'); /* Nav logic -------------------------------------------------------------- */ // Loop through each block with the class "long-form-content-v1" jQuery(".block-long-form-content-v1").each(function() { // Create a new unordered list to hold the anchor links var anchorList = jQuery("