ember-power-select-with-fallback
Version:
The default blueprint for ember-cli addons.
14 lines (11 loc) • 327 B
JavaScript
/* jshint node: true */
;
module.exports = {
name: 'ember-power-select-with-fallback',
contentFor: function(type, config) {
var emberPowerSelect = this.addons.filter(function(addon) {
return addon.name === 'ember-power-select';
})[0]
return emberPowerSelect.contentFor(type, config);
}
};