UI Cleanup - Updated System, Tags and Wanted subtrees.

This commit is contained in:
Taloth Saldono
2015-02-14 11:18:21 +01:00
parent d6079a701c
commit 32fc68b9df
46 changed files with 1008 additions and 643 deletions

View File

@@ -2,9 +2,13 @@ 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});
className : 'log-row',
events : {
'click' : '_showDetails'
},
_showDetails : function() {
vent.trigger(vent.Commands.ShowLogDetails, { model : this.model });
}
});