File "ai-errors.js"

Full Path: /home/refref/public_html/plugins-20250412220609/ad-inserter/includes/js/ai-errors.js
File size: 402 bytes
MIME-type: text/plain
Charset: utf-8

ai_document_write = document.write;

document.write = function (content) {
 if (document.readyState == 'interactive') {
    console.error ('document.write called after page load: ', content);
    if (typeof ai_js_errors != 'undefined') {
      ai_js_errors.push (['document.write called after page load', content, 0]);
    }
    return;
  }
  ai_document_write.call (document, content);
};