Last active
August 29, 2015 14:06
-
-
Save watert/85c5073d2046186f6400 to your computer and use it in GitHub Desktop.
Minimal Backbone View without backbone framework for minimal web app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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