15 lines
371 B
JavaScript
15 lines
371 B
JavaScript
import { or } from "@ember/object/computed";
|
|
import Component from "@ember/component";
|
|
import computed from "ember-addons/ember-computed-decorators";
|
|
|
|
export default Component.extend({
|
|
classNames: ["controls"],
|
|
|
|
buttonDisabled: or("model.isSaving", "saveDisabled"),
|
|
|
|
@computed("model.isSaving")
|
|
savingText(saving) {
|
|
return saving ? "saving" : "save";
|
|
}
|
|
});
|