Skip to content

Instantly share code, notes, and snippets.

@hex13
Last active November 23, 2016 11:57
Show Gist options
  • Save hex13/595b9e6be9d4c9e0fb9c4da2141bc73c to your computer and use it in GitHub Desktop.
Save hex13/595b9e6be9d4c9e0fb9c4da2141bc73c to your computer and use it in GitHub Desktop.
class Application {
constructor(logoUrl, onLoad) {
this.logo = new Image;
this.logo.src = logoUrl;
this.callback = onLoad;
this.logo.onLoad = this.run.bind(this);
}
run() {
// some other things
this.callback();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment