Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2015
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. window.removeEventListener('click', window.profileCb);
  2. window.clickCount = 0;
  3. window.profileCb = function() {
  4.     window.clickCount++;
  5.  
  6.     console.log('click');
  7.     // One click to open the menu
  8.     // One clikc to click "Download"
  9.     if(window.clickCount == 2) {
  10.         console.profile('my profile1');
  11.  
  12.         // Pause it quickly after and only capture what we need
  13.         setTimeout(function() {
  14.             console.profileEnd();
  15.         }, 100);
  16.     }
  17.  
  18. };
  19. document.addEventListener('click', window.window.profileCb);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement