Fixed: Use 24 hour time when configured

pull/6/head
Mark McDowall 10 years ago
parent 85f7195d57
commit 158e20bfe7

@ -61,7 +61,7 @@ define(
return ''; return '';
} }
return moment(input).format(UiSettings.time(false)); return moment(input).format(UiSettings.time(false, false));
}); });
Handlebars.registerHelper('LTS', function (input) { Handlebars.registerHelper('LTS', function (input) {
@ -69,7 +69,7 @@ define(
return ''; return '';
} }
return moment(input).format('h:mm:ss A'); return moment(input).format(UiSettings.time(true, true));
}); });
Handlebars.registerHelper('if_today', function(context, options) { Handlebars.registerHelper('if_today', function(context, options) {

@ -13,7 +13,7 @@ define(
var age = this.model.get('age'); var age = this.model.get('age');
var ageHours = this.model.get('ageHours'); var ageHours = this.model.get('ageHours');
var published = moment(this.model.get('publishDate')); var published = moment(this.model.get('publishDate'));
var publishedFormatted = published.format('{0} h:mm:ss A'.format(UiSettings.get('shortDateFormat'))); var publishedFormatted = published.format('{0} {1}'.format(UiSettings.get('shortDateFormat'), UiSettings.time(true, true)));
var formatted = age; var formatted = age;
var suffix = this.plural(age, 'day'); var suffix = this.plural(age, 'day');

@ -8,15 +8,19 @@ define(
url : window.NzbDrone.ApiRoot + '/config/ui', url : window.NzbDrone.ApiRoot + '/config/ui',
shortDateTime : function () { shortDateTime : function (includeSeconds) {
return this.get('shortDateFormat') + ' ' + this.time(true); return this.get('shortDateFormat') + ' ' + this.time(true, includeSeconds);
}, },
longDateTime : function () { longDateTime : function (includeSeconds) {
return this.get('longDateFormat') + ' ' + this.time(true); return this.get('longDateFormat') + ' ' + this.time(true, includeSeconds);
}, },
time : function (includeMinuteZero) { time : function (includeMinuteZero, includeSeconds) {
if (includeSeconds) {
return this.get('timeFormat').replace(/\(?\:mm\)?/, ':mm:ss');
}
if (includeMinuteZero) { if (includeMinuteZero) {
return this.get('timeFormat').replace('(', '').replace(')', ''); return this.get('timeFormat').replace('(', '').replace(')', '');
} }

@ -12,7 +12,7 @@ define(
render: function () { render: function () {
var date = moment(this._getValue()); var date = moment(this._getValue());
this.$el.html('<span title="{1}">{0}</span>'.format(date.format(UiSettings.time(true)), date.format(UiSettings.longDateTime()))); this.$el.html('<span title="{1}">{0}</span>'.format(date.format(UiSettings.time(true, false)), date.format(UiSettings.longDateTime(true))));
return this; return this;
} }

Loading…
Cancel
Save