Skip to content

Instantly share code, notes, and snippets.

@oleq
Last active August 29, 2015 14:05
Show Gist options
  • Save oleq/7afd10c0be0f76fb1b98 to your computer and use it in GitHub Desktop.
Save oleq/7afd10c0be0f76fb1b98 to your computer and use it in GitHub Desktop.
function Foo( editor ) {
editor.on( 'destroy', this.bar, this );
}
Foo.prototype = {
bar: function() {}
};
new Foo( someEditor );
new Foo( someEditor );
new Foo( someEditor );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment