mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 21:35:48 +08:00
23 lines
546 B
JavaScript
23 lines
546 B
JavaScript
import ObjectController from 'discourse/controllers/object';
|
|
|
|
export default ObjectController.extend({
|
|
|
|
actions: {
|
|
refresh: function() {
|
|
var model = this.get('model'),
|
|
self = this;
|
|
|
|
self.set('loading', true);
|
|
Discourse.EmailPreview.findDigest(this.get('lastSeen')).then(function (email) {
|
|
model.setProperties(email.getProperties('html_content', 'text_content'));
|
|
self.set('loading', false);
|
|
});
|
|
},
|
|
|
|
toggleShowHtml: function() {
|
|
this.toggleProperty('showHtml');
|
|
}
|
|
}
|
|
|
|
});
|