mirror of https://github.com/Radarr/Radarr
20 lines
405 B
JavaScript
20 lines
405 B
JavaScript
'use strict';
|
|
define(['app', 'Series/SeasonModel'], function () {
|
|
|
|
NzbDrone.Series.Details.EpisodeItemView = Backbone.Marionette.ItemView.extend({
|
|
template: 'Series/Details/EpisodeItemTemplate',
|
|
tagName: 'tr',
|
|
|
|
ui: {
|
|
|
|
},
|
|
|
|
events: {
|
|
|
|
},
|
|
onRender: function () {
|
|
NzbDrone.ModelBinder.bind(this.model, this.el);
|
|
}
|
|
});
|
|
});
|