Skip to content

Instantly share code, notes, and snippets.

@KATT
Last active December 29, 2015 16:39
Show Gist options
  • Save KATT/7699104 to your computer and use it in GitHub Desktop.
Save KATT/7699104 to your computer and use it in GitHub Desktop.
Find the bug.
class Menu
constructor: (@$el) ->
@isOpen = false
@$el.on 'click', '.menu-toggle', => @toggleMenu()
toggleMenu:
@$el.toggleClass 'open', !@isOpen
@isOpen = !@isOpen
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment