Radarr/src/UI/System/Logs/Files/Row.js
Mark McDowall f5d46ffcd2 Log file changes
New: Update log files are available in the UI
Fixed: UI error after clearing log files
2014-06-24 16:52:07 -07:00

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