mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
20 lines
410 B
JavaScript
20 lines
410 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'vent',
|
|
'backgrid'
|
|
], function (vent, Backgrid) {
|
|
|
|
return Backgrid.Row.extend({
|
|
className: 'log-file-row',
|
|
|
|
events: {
|
|
'click': '_showContents'
|
|
},
|
|
|
|
_showContents: function () {
|
|
vent.trigger(vent.Commands.ShowLogFile, { model: this.model });
|
|
}
|
|
});
|
|
});
|