1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-02-15 10:55:57 +00:00
Sonarr/UI/Series/Details/EpisodeDetailCell.js
Keivan Beigi 27fc51da48 Cleaned up modals in the UI.
added empty modal for episode info
2013-05-14 18:17:53 -07:00

20 lines
553 B
JavaScript

"use strict";
define(['app', 'Episode/Layout'], function () {
NzbDrone.Series.Details.EpisodeDetailCell = Backgrid.Cell.extend({
events: {
'click': 'showDetails'
},
render: function () {
this.$el.empty();
this.$el.html('<i class="icon-ellipsis-vertical x-detail-icon"/>');
return this;
},
showDetails: function () {
var view = new NzbDrone.Episode.Layout({ model: this.model });
NzbDrone.modalRegion.show(view);
}
});
});