diff --git a/core/client/controllers/posts/post.js b/core/client/controllers/posts/post.js index 82ede268f7..84d0c6bf85 100644 --- a/core/client/controllers/posts/post.js +++ b/core/client/controllers/posts/post.js @@ -1,11 +1,19 @@ var PostController = Ember.ObjectController.extend({ isPublished: Ember.computed.equal('status', 'published'), + classNameBindings: ['featured'], actions: { toggleFeatured: function () { - this.set('featured', !this.get('featured')); + var featured = !this.get('featured'), + self = this; - this.get('model').save(); + this.set('featured', featured); + + this.get('model').save().then(function () { + self.notifications.showSuccess('Post successfully marked as ' + (featured ? 'featured' : 'not featured') + '.'); + }, function () { + self.notifications.showError('An error occured while saving the post.'); + }); } } }); diff --git a/core/client/templates/posts.hbs b/core/client/templates/posts.hbs index a0ba148d9f..5d34716772 100644 --- a/core/client/templates/posts.hbs +++ b/core/client/templates/posts.hbs @@ -9,7 +9,6 @@ {{#view "content-list-content-view" tagName="section"}}