1,167
edits
Join the HITS Discord and leave your suggestions for this wiki, talk about your edits, or just chat with fellow Tally Hall fans!
(I do not know anything about javascript. This is going to be fun.) Tag: Reverted |
|||
Line 108: | Line 108: | ||
}; | }; | ||
})(); | })(); | ||
/** prettybutton ************************************** | |||
* | |||
* Description: if button is clicked, add prettybutton-clicked. if clicked again, remove it | |||
* Maintainers: | |||
*/ | |||
$("#prettybutton").click(function() { | |||
$("#prettybutton").addClass('prettybutton-clicked'); | |||
}); | |||
$("#prettybutton-clicked").click(function() { | |||
$("#prettybutton-clicked").removeClass('prettybutton-clicked'); | |||
}); |