Last active
January 28, 2017 17:32
-
-
Save zoka123/8e5eea732c3e7c4ed732aa3578bec544 to your computer and use it in GitHub Desktop.
Follow everyone on Medium
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 buttons = document.getElementsByClassName('js-followButton'); | |
| for(var i = 0; i < buttons.length; i++){ | |
| var item = buttons[i]; | |
| if(!item.classList.contains('is-active')){ | |
| item.click(); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment