Files
Prowlarr-Prowlarr/src/UI/System/Logs/Files/Row.js
2013-10-08 18:43:41 -07:00

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 });
}
});
});