mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-23 22:11:09 +03:00
Publish date and time display fix
no issue - add @ symbol to ensure date and time are clear
This commit is contained in:
parent
31e690cb15
commit
f71ce8ac07
@ -30,7 +30,7 @@
|
||||
pubDate = this.model ? this.model.get('published_at') : 'Not Published',
|
||||
$pubDateEl = this.$('.post-setting-date'),
|
||||
$postSettingSlugEl = this.$('.post-setting-slug'),
|
||||
publishedDateFormat = 'DD MMM YY HH:mm';
|
||||
publishedDateFormat = 'DD MMM YY @ HH:mm';
|
||||
|
||||
$postSettingSlugEl.val(slug);
|
||||
|
||||
@ -143,7 +143,7 @@
|
||||
e.preventDefault();
|
||||
var self = this,
|
||||
parseDateFormats = ['DD MMM YY HH:mm', 'DD MMM YYYY HH:mm', 'DD/MM/YY HH:mm', 'DD/MM/YYYY HH:mm', 'DD-MM-YY HH:mm', 'DD-MM-YYYY HH:mm'],
|
||||
displayDateFormat = 'DD MMM YY HH:mm',
|
||||
displayDateFormat = 'DD MMM YY @ HH:mm',
|
||||
errMessage = '',
|
||||
pubDate = self.model.get('published_at'),
|
||||
pubDateEl = e.currentTarget,
|
||||
@ -184,7 +184,7 @@
|
||||
|
||||
// Validate new Published date
|
||||
if (!newPubDateMoment.isValid()) {
|
||||
errMessage = 'Published Date must be a valid date with format: DD MMM YY HH:mm (e.g. 6 Dec 14 15:00)';
|
||||
errMessage = 'Published Date must be a valid date with format: DD MMM YY @ HH:mm (e.g. 6 Dec 14 @ 15:00)';
|
||||
}
|
||||
|
||||
if (newPubDateMoment.diff(new Date(), 'h') > 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user