ember-power-select-sortable
Version:
The default blueprint for ember-cli addons.
17 lines (14 loc) • 387 B
JavaScript
/* eslint-env node */
;
module.exports = {
name: 'ember-power-select-sortable',
included: function(app) {
this._super.included.apply(this, arguments);
},
contentFor(type, config) {
var emberPowerSelect = this.addons.find(function(addon) {
return addon.name === 'ember-power-select';
})
return emberPowerSelect.contentFor(type, config);
}
};