Created
June 26, 2016 18:58
-
-
Save jbinfo/3bb292ea8e595a86c26708d53ca44750 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var secondes = Math.floor((Math.random() * 10) + 3); | |
var duration = secondes; | |
$('#activity-popup-dialog-body').find('.not-following').find('button.follow-button').each(function() { | |
var _this = this; | |
setTimeout(function() { | |
$(_this).trigger('click'); | |
}, duration * 1000); | |
duration += secondes; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment