mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
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);
|
|
}
|
|
})
|
|
}) |