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