diff --git a/addon/components/md-select.js b/addon/components/md-select.js index ac4f03d5..b623914d 100644 --- a/addon/components/md-select.js +++ b/addon/components/md-select.js @@ -60,7 +60,6 @@ export default Component.extend({ actions: { change() { - // const changeAction = this.get('action'); const selectedEl = this.$('select')[0]; const selectedIndex = selectedEl.selectedIndex; const content = this.get('content'); @@ -70,7 +69,7 @@ export default Component.extend({ Ember.run.schedule('afterRender', () => { this._rebuildSelect(); }); - // changeAction(selectedValue); + this.sendAction('on-change', selectedValue); } } });