0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Post settings menu tweaks

closes #782, #783

- delete button hidden until ID
- publish date works before publish
This commit is contained in:
Hannah Wolfe 2013-09-17 11:39:27 +01:00
parent 455687654f
commit 6bfd024046
2 changed files with 10 additions and 6 deletions

View file

@ -8,8 +8,8 @@
<span class="author">{{#if author.name}}{{author.name}}{{else}}{{author.email}}{{/if}}</span>
<section class="post-controls">
<a class="post-edit" href="#"><span class="hidden">Edit Post</span></a>
<a class="post-settings" href="#" data-toggle=".menu-drop-right"><span class="hidden">Post Settings</span></a>
<ul class="menu-drop-right overlay">
<a class="post-settings" href="#" data-toggle=".post-settings-menu"><span class="hidden">Post Settings</span></a>
<ul class="post-settings-menu menu-drop-right overlay">
<li class="post-setting">
<div class="post-setting-label">
<label for="url">URL</label>
@ -23,10 +23,10 @@
<label for="url">Pub Date</label>
</div>
<div class="post-setting-field">
<input class="post-setting-date" disabled type="text" value="">
<input class="post-setting-date" type="text" value="">
</div>
</li>
<li><a href="#" class="delete">Delete</a></li>
<li><a href="#" class="delete hidden">Delete</a></li>
</ul>
</section>
</header>

View file

@ -16,6 +16,7 @@
initialize: function () {
if (this.model) {
this.listenTo(this.model, 'change:id', this.render);
this.listenTo(this.model, 'change:status', this.render);
this.listenTo(this.model, 'change:published_at', this.render);
}
@ -24,14 +25,17 @@
render: function () {
var slug = this.model ? this.model.get('slug') : '',
pubDate = this.model ? this.model.get('published_at') : 'Not Published',
$pubDateEl = $('.post-setting-date');
$pubDateEl = this.$('.post-setting-date');
$('.post-setting-slug').val(slug);
// Insert the published date, and make it editable if it exists.
if (this.model && this.model.get('published_at')) {
pubDate = moment(pubDate).format('DD MMM YY');
$pubDateEl.removeAttr('disabled');
}
if (this.model && this.model.get('id')) {
this.$('.delete').removeClass('hidden');
}
$pubDateEl.val(pubDate);