Skip to content

Instantly share code, notes, and snippets.

@george
Created September 17, 2012 16:05
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 george/3738209 to your computer and use it in GitHub Desktop.
Save george/3738209 to your computer and use it in GitHub Desktop.
deferReadiness
SocialRoi = Ember.Application.create({
ready: function() {
this.deferReadiness();
console.log('SocialRoi almost ready...');
this.advanceReadiness();
return this._super();
}
});
// RESULT:
// Uncaught TypeError: Object SocialRoi has no method 'deferReadiness'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment