mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
17 lines
306 B
JavaScript
17 lines
306 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 : {
|
|
|
|
},
|
|
});
|
|
});
|