mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
95a6dfc34e
summary tab is working.
18 lines
424 B
JavaScript
18 lines
424 B
JavaScript
"use strict";
|
|
|
|
define(['app', 'Episode/Layout'], function () {
|
|
NzbDrone.Series.Details.EpisodeTitleCell = Backgrid.StringCell.extend({
|
|
|
|
className: 'episode-title-cell',
|
|
|
|
events: {
|
|
'click': 'showDetails'
|
|
},
|
|
|
|
showDetails: function () {
|
|
var view = new NzbDrone.Episode.Layout({ model: this.model });
|
|
NzbDrone.modalRegion.show(view);
|
|
}
|
|
});
|
|
});
|