Fossil

Diff
Login

Diff

Differences From Artifact [f8d966bdfb]:

To Artifact [2b485ac67f]:


33
34
35
36
37
38
39
40
41
42
43
44
45
46
  var x = document.getElementById("href-data");
  var jx = x.textContent || x.innerText;
  var g = JSON.parse(jx);
  var isOperaMini =
       Object.prototype.toString.call(window.operamini)==="[object OperaMini]";
  if(g.mouseover && !isOperaMini){
    document.getElementByTagName("body")[0].onmousemove=function(){
      setTimeout("setAllHrefs();",g.delay);
    }
  }else{
    setTimeout("setAllHrefs();",g.delay);
  }
}
antiRobotDefense()







|


|



33
34
35
36
37
38
39
40
41
42
43
44
45
46
  var x = document.getElementById("href-data");
  var jx = x.textContent || x.innerText;
  var g = JSON.parse(jx);
  var isOperaMini =
       Object.prototype.toString.call(window.operamini)==="[object OperaMini]";
  if(g.mouseover && !isOperaMini){
    document.getElementByTagName("body")[0].onmousemove=function(){
      setTimeout(setAllHrefs, g.delay);
    }
  }else{
    setTimeout(setAllHrefs, g.delay);
  }
}
antiRobotDefense()