2013-03-02 19:13:23 +00:00
|
|
|
|
'use strict';
|
2013-03-03 22:42:26 +00:00
|
|
|
|
define(['app', 'Series/SeasonModel'], function () {
|
2013-03-02 19:13:23 +00:00
|
|
|
|
|
|
|
|
|
NzbDrone.Series.Details.EpisodeItemView = Backbone.Marionette.ItemView.extend({
|
|
|
|
|
template: 'Series/Details/EpisodeItemTemplate',
|
2013-03-29 23:28:58 +00:00
|
|
|
|
tagName : 'tr',
|
2013-03-02 19:13:23 +00:00
|
|
|
|
|
|
|
|
|
ui: {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
2013-03-29 23:28:58 +00:00
|
|
|
|
events : {
|
2013-03-02 19:13:23 +00:00
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
onRender: function () {
|
|
|
|
|
NzbDrone.ModelBinder.bind(this.model, this.el);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|