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