2013-05-21 00:17:33 +00:00
|
|
|
"use strict";
|
|
|
|
|
2013-06-09 20:51:32 +00:00
|
|
|
define(['app', 'Cells/NzbDroneCell'], function () {
|
|
|
|
NzbDrone.Cells.EpisodeTitleCell = NzbDrone.Cells.NzbDroneCell.extend({
|
2013-05-21 00:17:33 +00:00
|
|
|
|
|
|
|
className: 'episode-title-cell',
|
|
|
|
|
|
|
|
events: {
|
|
|
|
'click': 'showDetails'
|
|
|
|
},
|
|
|
|
|
|
|
|
showDetails: function () {
|
2013-06-09 20:51:32 +00:00
|
|
|
var view = new NzbDrone.Episode.Layout({ model: this.cellValue });
|
2013-05-21 00:17:33 +00:00
|
|
|
NzbDrone.modalRegion.show(view);
|
2013-06-09 20:51:32 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
render: function () {
|
|
|
|
this.$el.html(this.cellValue.get('title'));
|
|
|
|
return this;
|
2013-05-21 00:17:33 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|