1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Series/Details/EpisodeItemView.js
2013-03-29 16:28:58 -07:00

20 lines
408 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);
}
});
});