Created
November 19, 2014 11:50
-
-
Save lukemorton/633d78330c7e2d50589b to your computer and use it in GitHub Desktop.
Indie programming
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
class Link | |
constructor: -> | |
$(document).ready -> | |
@registerHandlers() | |
registerHandlers: -> | |
linksActive = no | |
$('.activate-links').on 'click', => | |
if linksActive | |
@activateLink() | |
else | |
@deactivateLink() | |
linksActive = !linksActive | |
activateLink: -> | |
$('.link').addClass('active') | |
$('.link').text("#{$('.link').text()} – active") | |
deactivateLink: -> | |
$('.link').addClass('active') | |
$('.link').text($('.link').text().replace(' – active', '')) | |
new Link |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment