mirror of
https://github.com/discourse/discourse.git
synced 2025-02-11 14:49:28 +08:00
10 lines
208 B
JavaScript
10 lines
208 B
JavaScript
export default Ember.Controller.extend({
|
|
saving: false,
|
|
newBio: null,
|
|
|
|
saveButtonText: function() {
|
|
return this.get('saving') ? I18n.t("saving") : I18n.t('user.change');
|
|
}.property('saving')
|
|
|
|
});
|