0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00

Remove PostSettingsMenuView.

It seems that the properties this sets up (`datePlaceholder` and
`publishedAt`) are unused throughout the project.
This commit is contained in:
Robert Jackson 2014-12-28 22:14:02 -05:00
parent 69fac82fce
commit ea95300385

View file

@ -1,14 +0,0 @@
/* global moment */
import {formatDate} from 'ghost/utils/date-formatting';
var PostSettingsMenuView = Ember.View.extend({
templateName: 'post-settings-menu',
publishedAtBinding: Ember.Binding.oneWay('controller.publishedAt'),
datePlaceholder: Ember.computed('controller.publishedAt', function () {
return formatDate(moment());
})
});
export default PostSettingsMenuView;