mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-06 16:55:49 +00:00
20 lines
406 B
JavaScript
20 lines
406 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'vent',
|
|
'backgrid'
|
|
], function (vent, Backgrid) {
|
|
|
|
return Backgrid.Row.extend({
|
|
className: 'log-row',
|
|
|
|
events: {
|
|
'click': '_showDetails'
|
|
},
|
|
|
|
_showDetails: function () {
|
|
vent.trigger(vent.Commands.ShowLogDetails, { model: this.model });
|
|
}
|
|
});
|
|
});
|