We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28e4e52 commit b7178b0Copy full SHA for b7178b0
index.js
@@ -3,8 +3,9 @@
3
4
module.exports = {
5
name: 'ember-cli-chart',
6
- included: function included(app) {
7
- this._super.included(app);
8
- app.import(app.project.nodeModulesPath + '/chart.js/dist/Chart.js');
+ included: function(app, parentAddon) {
+ this._super.included.apply(this, arguments);
+ var target = (parentAddon || app);
9
+ target.import('vendor/Chart.js');
10
}
11
};
0 commit comments