From eeb903719619762e81886aa752896ca2af78d2d4 Mon Sep 17 00:00:00 2001 From: Maik Kempe Date: Thu, 7 Jan 2016 22:52:43 +0100 Subject: [PATCH] Use `this._super.included.call(this, target)` in `included`. --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index be0bf556..962db044 100644 --- a/index.js +++ b/index.js @@ -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;