Skip to content

Instantly share code, notes, and snippets.

@watert
Last active August 29, 2015 14:06
Show Gist options
  • Save watert/85c5073d2046186f6400 to your computer and use it in GitHub Desktop.
Save watert/85c5073d2046186f6400 to your computer and use it in GitHub Desktop.
Minimal Backbone View without backbone framework for minimal web app
class BaseView
constructor:(options)->
@options = options
@el = options.el
@$el = $(@el)
@initialize?(options)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment