mirror of
https://github.com/Radarr/Radarr
synced 2025-12-20 15:24:41 +01:00
19 lines
417 B
JavaScript
19 lines
417 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 });
|
|
}
|
|
});
|
|
});
|