mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 19:52:01 +03:00
f29231aa70
Closes #3937 - Add ghost tab components - Remove extra container div from Application view - Move right-outlet viewing logic to application level - Prepare PSM.hbs for tabbing
14 lines
461 B
JavaScript
14 lines
461 B
JavaScript
/* global moment */
|
|
import {formatDate} from 'ghost/utils/date-formatting';
|
|
|
|
var PostSettingsMenuView = Ember.View.extend({
|
|
templateName: 'post-settings-menu',
|
|
//@TODO Changeout the binding for a simple computedOneWay?
|
|
publishedAtBinding: Ember.Binding.oneWay('controller.publishedAt'),
|
|
datePlaceholder: Ember.computed('controller.publishedAt', function () {
|
|
return formatDate(moment());
|
|
})
|
|
});
|
|
|
|
export default PostSettingsMenuView;
|