New: Progress bar for Activity: Queue

This commit is contained in:
Mark McDowall 2014-12-03 22:26:50 -08:00
parent 6b56e912eb
commit bffc64b92b
3 changed files with 38 additions and 1 deletions

View file

@ -10,6 +10,7 @@ define(
'Cells/QualityCell',
'Activity/Queue/QueueStatusCell',
'Activity/Queue/TimeleftCell',
'Activity/Queue/ProgressCell',
'Shared/Grid/Pager'
], function (Marionette,
Backgrid,
@ -20,6 +21,7 @@ define(
QualityCell,
QueueStatusCell,
TimeleftCell,
ProgressCell,
GridPager) {
return Marionette.Layout.extend({
template: 'Activity/Queue/QueueLayoutTemplate',
@ -66,6 +68,12 @@ define(
label : 'Timeleft',
cell : TimeleftCell,
cellValue : 'this'
},
{
name : 'episode',
label : 'Progress',
cell : ProgressCell,
cellValue : 'this'
}
],