mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-27 10:07:10 +00:00
16 lines
306 B
JavaScript
16 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 : {
|
|
|
|
},
|
|
});
|
|
});
|