Skip to content

Instantly share code, notes, and snippets.

@dagda1
Created November 15, 2011 21:12
Show Gist options
  • Save dagda1/1368362 to your computer and use it in GitHub Desktop.
Save dagda1/1368362 to your computer and use it in GitHub Desktop.
baseviewlight.coffee
class BaseView
constructor: (options) ->
Backbone.View.apply(@, [options])
_.extend(BaseView.prototype, Backbone.View.prototype, {
renderView: (el, func, view) ->
$.fn[func].call(el, view.render().el)
@views ||= []
@views.push view
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment