mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
20 lines
600 B
JavaScript
20 lines
600 B
JavaScript
import DiscourseController from 'discourse/controllers/controller';
|
|
|
|
export default DiscourseController.extend({
|
|
|
|
saveDisabled: function() {
|
|
if (this.get('saving')) { return true; }
|
|
if ((!this.get('content.allow_blank')) && this.blank('content.content')) { return true; }
|
|
return false;
|
|
}.property('saving', 'content.content'),
|
|
|
|
actions: {
|
|
saveChanges: function() {
|
|
var self = this;
|
|
self.setProperties({saving: true, saved: false});
|
|
self.get('content').save().then(function () {
|
|
self.setProperties({saving: false, saved: true});
|
|
});
|
|
}
|
|
}
|
|
});
|