Skip to content

Instantly share code, notes, and snippets.

@jgwhite
Last active August 29, 2015 14:01
Show Gist options
  • Save jgwhite/e02be563210164ced6c2 to your computer and use it in GitHub Desktop.
Save jgwhite/e02be563210164ced6c2 to your computer and use it in GitHub Desktop.
Initializer for reopening an Ember built-in class
// app/initializers/ds-many-array-ext.js
export default {
name: 'ds-many-array-ext',
initialize: function(container, app) {
DS.ManyArray.reopen({
// ...
});
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment