Skip to content

Instantly share code, notes, and snippets.

@smeevil
Last active August 29, 2015 14:15
Show Gist options
  • Save smeevil/4f9be1d21003fdb5c464 to your computer and use it in GitHub Desktop.
Save smeevil/4f9be1d21003fdb5c464 to your computer and use it in GitHub Desktop.
shared function
Template.foo.rendered = ->
@_mySharedFunction = ->
console.log "yeah baby"
Template.foo.events
'click .something': (e, template)->
template._mySharedFunction()
Template.foo.helpers
myHelper: ->
Template.instance()._mySharedFunction()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment