mirror of https://github.com/lidarr/Lidarr
16 lines
360 B
JavaScript
16 lines
360 B
JavaScript
|
'use strict';
|
||
|
|
||
|
define([
|
||
|
'app',
|
||
|
'Upcoming/UpcomingCollection'
|
||
|
|
||
|
], function () {
|
||
|
NzbDrone.Upcoming.UpcomingItemView = Backbone.Marionette.ItemView.extend({
|
||
|
template: 'Upcoming/UpcomingItemTemplate',
|
||
|
tagName: 'tr',
|
||
|
|
||
|
onRender: function () {
|
||
|
NzbDrone.ModelBinder.bind(this.model, this.el);
|
||
|
}
|
||
|
})
|
||
|
})
|