Fix File
•
/
home
/
sportsfe...
/
httpdocs
/
clone
/
wp-conte...
/
plugins
/
advanced...
/
public
/
assets
/
js
•
File:
ready.js
•
Content:
/** * Wait for the page to be ready before firing JS. * * @param {function} callback - A callable function to be executed. * @param {string} [requestedState=complete] - document.readyState to wait for. Defaults to 'complete', can be 'interactive'. */ window.advanced_ads_ready = function ( callback, requestedState ) { requestedState = requestedState || 'complete'; var checkState = function ( state ) { return requestedState === 'interactive' ? state !== 'loading' : state === 'complete'; }; // If we have reached the correct state, fire the callback. if ( checkState( document.readyState ) ) { callback(); return; } // We are not yet in the correct state, attach an event handler, only fire once if the requested state is 'interactive'. document.addEventListener( 'readystatechange', function ( event ) { if ( checkState( event.target.readyState ) ) { callback(); } }, {once: requestedState === 'interactive'} ); }; window.advanced_ads_ready_queue = window.advanced_ads_ready_queue || [];
•
Search:
•
Replace:
Function
Edit by line
Download
Information
Rename
Copy
Move
Delete
Chmod
List