mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-25 22:59:10 -04:00
10 lines
295 B
JavaScript
10 lines
295 B
JavaScript
var vent = require('vent');
|
|
var Backgrid = require('backgrid');
|
|
|
|
module.exports = Backgrid.Row.extend({
|
|
className : 'log-row',
|
|
events : {"click" : '_showDetails'},
|
|
_showDetails : function(){
|
|
vent.trigger(vent.Commands.ShowLogDetails, {model : this.model});
|
|
}
|
|
}); |