mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-30 18:24:45 -04:00
20 lines
408 B
JavaScript
20 lines
408 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'vent',
|
|
'backgrid'
|
|
], function (vent, Backgrid) {
|
|
|
|
return Backgrid.Row.extend({
|
|
className: 'log-file-row',
|
|
|
|
events: {
|
|
'click': '_showDetails'
|
|
},
|
|
|
|
_showDetails: function () {
|
|
vent.trigger(vent.Commands.ShowLogFile, { model: this.model });
|
|
}
|
|
});
|
|
});
|