Skip to content

Commit

Permalink
Merge pull request #97 from bitaculous/fix_included
Browse files Browse the repository at this point in the history
Use `this._super.included.call(this, target)` in `included` function.
  • Loading branch information
rwjblue committed Jan 7, 2016
2 parents 2955c96 + eeb9037 commit ad0b572
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ module.exports = {

included: function included(app, parentAddon) {
var target = (parentAddon || app);
this._super.included(target);
this._super.included.call(this, target);

this.options = target.options;

Expand Down

0 comments on commit ad0b572

Please sign in to comment.