diff --git a/index.js b/index.js index 0d478a4..997afcf 100644 --- a/index.js +++ b/index.js @@ -3,8 +3,8 @@ module.exports = { name: 'ember-initials', - included: function(app) { - this._super.included(app); - app.import('node_modules/blueimp-md5/js/md5.min.js', { using: [{ transformation: 'amd', as: 'md5' }]}); + included: function() { + this._super.included.apply(this, arguments); + this.import('node_modules/blueimp-md5/js/md5.min.js', { using: [{ transformation: 'amd', as: 'md5' }]}); } }