mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-25 08:39:38 -05:00
19 lines
375 B
Text
19 lines
375 B
Text
|
import computed from 'ember-addons/ember-computed-decorators';
|
||
|
|
||
|
export default Ember.Component.extend({
|
||
|
classNames: ['controls'],
|
||
|
|
||
|
buttonDisabled: Ember.computed.or('model.isSaving', 'saveDisabled'),
|
||
|
|
||
|
@computed('model.isSaving')
|
||
|
savingText(saving) {
|
||
|
return saving ? 'saving' : 'save';
|
||
|
},
|
||
|
|
||
|
actions: {
|
||
|
saveChanges() {
|
||
|
this.sendAction();
|
||
|
}
|
||
|
}
|
||
|
});
|