1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-23 22:25:14 -04:00

Cleaned up queue table a bit.

This commit is contained in:
Mark McDowall
2013-10-02 08:33:23 -07:00
parent fc3ad9023d
commit 76089b460c
5 changed files with 11 additions and 6 deletions
+3 -3
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;