Cleaned up queue table a bit.

This commit is contained in:
Mark McDowall 2013-10-02 08:33:23 -07:00
commit 76089b460c
5 changed files with 11 additions and 6 deletions

View file

@ -91,4 +91,9 @@ td.episode-status-cell, td.quality-cell {
.series-actions-cell {
width: 40px;
}
.timeleft-cell {
cursor: default;
width: 80px;
}

View file

@ -6,7 +6,7 @@ define(
], function (NzbDroneCell) {
return NzbDroneCell.extend({
className: 'history-event-type-cell',
className: 'timeleft-cell',
render: function () {
this.$el.empty();
@ -15,10 +15,10 @@ define(
var timeleft = this.cellValue.get('timeleft');
var size = this.cellValue.get('size');
var sizeLeft = this.cellValue.get('sizeLeft');
var sizeleft = this.cellValue.get('sizeleft');
this.$el.html(timeleft);
this.$el.attr('title', '{0} MB / {1} MB'.format(sizeLeft, size));
this.$el.attr('title', '{0} MB / {1} MB'.format(sizeleft, size));
}
return this;