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.
23 lines
576 B
23 lines
576 B
'use strict';
|
|
define(
|
|
[
|
|
'app',
|
|
'backgrid'
|
|
], function (App, Backgrid) {
|
|
return Backgrid.Row.extend({
|
|
events: {
|
|
'click .x-edit' : 'editSeries',
|
|
'click .x-remove': 'removeSeries'
|
|
},
|
|
|
|
editSeries: function () {
|
|
App.vent.trigger(App.Commands.EditSeriesCommand, {series:this.model});
|
|
},
|
|
|
|
removeSeries: function () {
|
|
App.vent.trigger(App.Commands.DeleteSeriesCommand, {series:this.model});
|
|
},
|
|
});
|
|
});
|
|
|