Advertisement
Guest User

Untitled

a guest
Jun 26th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. var secondes = Math.floor((Math.random() * 10) + 3);
  2. var duration = secondes;
  3. $('#activity-popup-dialog-body').find('.not-following').find('button.follow-button').each(function() {
  4. var _this = this;
  5.  
  6. setTimeout(function() {
  7. $(_this).trigger('click');
  8. }, duration * 1000);
  9.  
  10. duration += secondes;
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement