forked from cibernox/ember-power-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
30 lines (25 loc) · 853 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* jshint node: true */
'use strict';
// var path = require('path');
module.exports = {
name: 'ember-power-select',
included: function(app) {
this._super.included.apply(this, arguments);
// Don't include the precompiled css file if the user uses ember-cli-sass
if (!app.registry.availablePlugins['ember-cli-sass']) {
var addonConfig = app.options['ember-power-select'];
if (!addonConfig || !addonConfig.theme) {
app.import('vendor/ember-power-select.css');
} else {
app.import('vendor/ember-power-select-'+addonConfig.theme+'.css');
}
}
},
contentFor: function(type, config) {
var emberBasicDropdown = this.addons.filter(function(addon) {
return addon.name === 'ember-basic-dropdown';
})[0]
return emberBasicDropdown.contentFor.apply(this, [type, config]);
}
};