1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-28 10:48:46 +00:00
Sonarr/UI/Series/Details/EpisodeItemView.js
2013-03-29 16:28:58 -07:00

19 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);
}
});
});