We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aa3df05 + 7ac0ec9 commit 3e00c68Copy full SHA for 3e00c68
index.js
@@ -17,13 +17,13 @@ module.exports = {
17
blueprintsPath: function () {
18
return path.join(__dirname, 'blueprints');
19
},
20
- included: function colpick_included() {
+ included: function colpick_included(app) {
21
this._super.included.apply(this, arguments);
22
if (!process.env.EMBER_CLI_FASTBOOT) {
23
var colpickPath = path.join('vendor', 'jquery-colpick');
24
25
- this.app.import(path.join(colpickPath, 'colpick.js'));
26
- this.app.import(path.join(colpickPath, 'colpick.css'));
+ app.import(path.join(colpickPath, 'colpick.js'));
+ app.import(path.join(colpickPath, 'colpick.css'));
27
}
28
29
};
0 commit comments