You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/UI/System/Logs/Table/LogRow.js

14 lines
305 B

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