From 2d321e2f01a1cc92a2816d55b54fef4321f67afb Mon Sep 17 00:00:00 2001 From: Matt Enlow Date: Tue, 3 Jun 2014 16:30:46 -0600 Subject: [PATCH] Removed holdover popover code in PostsPostController Ref #2840 -Removed unused isEditingSettings and isViewingSaveTypes from PostsPostController --- core/client/controllers/posts/post.js | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/core/client/controllers/posts/post.js b/core/client/controllers/posts/post.js index 8e8196dc77..7f8a9843e1 100644 --- a/core/client/controllers/posts/post.js +++ b/core/client/controllers/posts/post.js @@ -2,10 +2,6 @@ import {parseDateString, formatDate} from 'ghost/utils/date-formatting'; var PostController = Ember.ObjectController.extend({ - //## Editor state properties - isEditingSettings: false, - isViewingSaveTypes: false, - //## Computed post properties isPublished: Ember.computed.equal('status', 'published'), isDraft: Ember.computed.equal('status', 'draft'), @@ -44,9 +40,6 @@ var PostController = Ember.ObjectController.extend({ self.get('model.status') + '.'); }, this.notifications.showErrors); }, - viewSaveTypes: function () { - this.toggleProperty('isViewingSaveTypes'); - }, setSaveType: function (newType) { if (newType === 'publish') { this.set('willPublish', true); @@ -61,20 +54,6 @@ var PostController = Ember.ObjectController.extend({ this.get('model').save(); }, - editSettings: function () { - var isEditing = this.toggleProperty('isEditingSettings'); - if (isEditing) { - //Stop editing if the user clicks outside the settings view - Ember.run.next(this, function () { - var self = this; - // @TODO has a race condition with click on the editSettings action - $(document).one('click', function () { - self.toggleProperty('isEditingSettings'); - }); - }); - } - }, - updateSlug: function () { var newSlug = this.get('newSlug'), slug = this.get('slug'),