Skip to content

Instantly share code, notes, and snippets.

@davidortinau
Created June 20, 2014 16:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidortinau/b7d7a34631aeca845c91 to your computer and use it in GitHub Desktop.
Save davidortinau/b7d7a34631aeca845c91 to your computer and use it in GitHub Desktop.
Method Scope
SomeView = Backbone.View.extend
viewMethod: ->
# do something in the view, can be called @viewMethod() or from outside like someView.viewMethod()
otherMethod = () ->
# whaddya call this?
otherOtherMethod = () ->
# whaddya call this?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment