Skip to content

Instantly share code, notes, and snippets.

@thejefflarson
Created June 30, 2010 17:06
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 thejefflarson/458947 to your computer and use it in GitHub Desktop.
Save thejefflarson/458947 to your computer and use it in GitHub Desktop.
propublica.Deferrable = propublica.View.extend({
init : function(){
this._super();
_.bindAll(this, 'render');
var oldRender = this.render;
this.render = function(){_.defer(oldRender);};
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment