Skip to content

Instantly share code, notes, and snippets.

@neuling
Created October 5, 2013 16:25
Show Gist options
  • Save neuling/6842966 to your computer and use it in GitHub Desktop.
Save neuling/6842966 to your computer and use it in GitHub Desktop.
clickBindings: =>
# Mobile
for el in document.querySelectorAll("#header a")
el.addEventListener 'click', (evt) ->
evt.preventDefault()
return unless hashMatch = evt.srcElement.href.match(/(#.+)$/)
@scrollToSection hashMatch[1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment