<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">(function($) {
    "use strict";
    $( window ).on( 'elementor/frontend/init', function() {
        elementorFrontend.waypoint = function($element, callback, options) {
            if( $element.length &lt;= 0) return;
            const defaultOptions = {
              offset: '100%',
              triggerOnce: true
            }; 
            options = jQuery.extend(defaultOptions, options);
            const correctCallback = function () {
              const element = this.element || this,
                result = callback.apply(element, arguments);

              // If is Waypoint new API and is frontend
              if (options.triggerOnce &amp;&amp; this.destroy) {
                this.destroy();
              }
              return result;
            };
             
            return $element.elementorWaypoint(correctCallback, options);
        }
    });
 
}(jQuery));</pre></body></html>