Advertisement
Dzhubal

Untitled

Sep 30th, 2019
216
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.             if (location.pathname.indexOf('/shop/catalog')>-1 || location.pathname.indexOf('/product/')>-1) {
  12.                 carrotquest.track('Неавторизованный пользователь покидает каталог магазина');
  13.             }
  14.             else if (location.pathname.indexOf('/course/catalog')>-1) {
  15.                 carrotquest.track('Неавторизованный пользователь покидает каталог курсов');
  16.             };
  17.             deleteEvent();
  18.             setTimeout(addMouseout, 10000);
  19.         }
  20.     }
  21.     function deleteEvent() {
  22.         document.removeEventListener('mouseout', mouseout);
  23.     }
  24. }());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement