Files
Readarr/src/UI/History/Table/HistoryDetailsCell.js
T
Mark McDowall e7ac2247ab Log details
New: Logs now have details available
2013-10-31 23:15:15 -07:00

28 lines
617 B
JavaScript

'use strict';
define(
[
'vent',
'Cells/NzbDroneCell'
], function (vent, NzbDroneCell) {
return NzbDroneCell.extend({
className: 'history-details-cell',
events: {
'click': '_showDetails'
},
render: function () {
this.$el.empty();
this.$el.html('<i class="icon-info-sign"></i>');
return this;
},
_showDetails: function () {
vent.trigger(vent.Commands.ShowHistoryDetails, { model: this.model });
}
});
});