OKCCC, TEEM combine to deliver new toys to families

To help families seeking Christmas gifts for the children of parents who are incarcerated, staff at the Oklahoma City Convention Center partnered with The Education and Employment Ministry (TEEM) to assist with the need.

/** * Elementor Accordion Anchor Fix * Fixes anchor links (#anchor-id) that point to content hidden inside * a collapsed Elementor Accordion tab. Opens the correct accordion item * and scrolls to it smoothly. */ add_action( 'wp_footer', function () { ?> ( () => { const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } ); } )();