mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
23 lines
527 B
JavaScript
23 lines
527 B
JavaScript
'use strict';
|
|
|
|
define(['app', 'Cells/NzbDroneCell'], function () {
|
|
return NzbDrone.Cells.NzbDroneCell.extend({
|
|
|
|
className: 'episode-title-cell',
|
|
|
|
events: {
|
|
'click': 'showDetails'
|
|
},
|
|
|
|
showDetails: function () {
|
|
var view = new NzbDrone.Episode.Layout({ model: this.cellValue });
|
|
NzbDrone.modalRegion.show(view);
|
|
},
|
|
|
|
render: function () {
|
|
this.$el.html(this.cellValue.get('title'));
|
|
return this;
|
|
}
|
|
});
|
|
});
|