This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/pods/components/x-select/component.js
2015-11-13 15:13:46 -07:00

35 lines
643 B
JavaScript

import Ember from 'ember';
const { Component } = Ember;
export default Component.extend({
tagName: 'select',
attributeBindings: [
'multiple',
],
options: null,
selected: null,
nameAttr: null,
change: function() {
this.attrs.update(this.$().select2('val'));
},
didInsertElement: function() {
if (this.get('placeholder')) {
this.$().select2({
placeholder: this.get('placeholder'),
});
} else {
this.$().select2();
}
},
didRender: function() {
Ember.run.schedule('afterRender', this, function() {
this.$().select2('val', this.get('selected'));
});
},
});