Skip to content

Instantly share code, notes, and snippets.

@nicinabox
Created April 25, 2014 20:59
Show Gist options
  • Save nicinabox/11303105 to your computer and use it in GitHub Desktop.
Save nicinabox/11303105 to your computer and use it in GitHub Desktop.
Wrap Backbone's render function and fire a render event
class Backbone.View extends Backbone.View
constructor: ->
super
@render = _.wrap @render, (viewRender, args) =>
viewRender = _.bind viewRender, this
viewRender(args)
setTimeout =>
@trigger('render')
, 0
@el
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment