Fixed tooltip for pending queue items.

This commit is contained in:
Taloth Saldono
2015-02-22 22:09:06 +01:00
parent a3d649452f
commit 2da23ae230
3 changed files with 23 additions and 3 deletions

View File

@@ -14,9 +14,7 @@ module.exports = NzbDroneCell.extend({
if (this.cellValue.get('status').toLowerCase() === 'pending') {
var ect = this.cellValue.get('estimatedCompletionTime');
var time = '{0} at {1}'.format(FormatHelpers.relativeDate(ect), moment(ect).format(UiSettingsModel.time(true, false)));
this.$el.html('-');
this.$el.attr('title', 'Will be processed during the first RSS Sync after {0}'.format(time));
this.$el.html('<div title="Delaying download till {0}">-</div>'.format(time));
return this;
}