Last active
December 11, 2015 22:19
-
-
Save cgiffard/4668995 to your computer and use it in GitHub Desktop.
Bookmarklet for making the LCA schedule toggle-able
This file contains 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
javascript:(function(){[].slice.call(document.querySelectorAll("td"),0).forEach(function(item)%20{%20item.addEventListener("click",function()%20{%20console.log("clicked",item.state);item.state%20=%20!item.state;%20item.style.backgroundColor%20=%20["transparent","pink"][+item.state];%20})});})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment