Created
July 20, 2016 14:35
-
-
Save bacoords/86ee5e177d361c41da70d7f91a8dff39 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
//Max Clicks | |
var i = 0; | |
var el = document.getElementById("cb-dust-particles"); | |
el.addEventListener("click", function(){ | |
i++; | |
if(i == 10) { | |
pJSDom[0].pJS.interactivity.events.onclick.enable = false; | |
} | |
}, false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment