mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 01:32:23 +08:00
f9648de897
Co-Authored-By: Bianca Nenciu <nbianca@users.noreply.github.com> Co-Authored-By: David Taylor <david@taylorhq.com>
13 lines
305 B
JavaScript
13 lines
305 B
JavaScript
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";
|
|
}
|
|
});
|