Advertisement
ivan_carrotquest

Untitled

Nov 7th, 2017
1,359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function() {
  2.     init()
  3.     function init() {
  4.         setTimeout(addMouseout, 5000);
  5.     }
  6.     function addMouseout() {
  7.         document.addEventListener('mouseout', mouseout);
  8.     }
  9.     function mouseout(e) {
  10.         if (Math.round(e.x) >= 0 && Math.round(e.y) <= 0) {
  11.             carrotquest.track('Попытка ухода с сайта');
  12.             deleteEvent();
  13.             setTimeout(addMouseout, 10000);
  14.         }
  15.     }
  16.     function deleteEvent() {
  17.         document.removeEventListener('mouseout', mouseout);
  18.     }
  19. }());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement