Fixed Indexer delete view

pull/4/head
Mark McDowall 11 years ago
parent 66504febe0
commit c0ae876385

@ -0,0 +1,23 @@
'use strict';
define(
[
'vent',
'marionette'
], function (vent, Marionette) {
return Marionette.ItemView.extend({
template: 'Settings/Indexers/DeleteViewTemplate',
events: {
'click .x-confirm-delete': '_removeNotification'
},
_removeNotification: function () {
this.model.destroy({
wait : true,
success: function () {
vent.trigger(vent.Commands.CloseModalCommand);
}
});
}
});
});

@ -4,7 +4,7 @@ define(
[
'AppLayout',
'marionette',
'Settings/Notifications/DeleteView',
'Settings/Indexers/DeleteView',
'Mixins/AsModelBoundView',
'Mixins/AsValidatedView'
], function (AppLayout, Marionette, DeleteView, AsModelBoundView, AsValidatedView) {

Loading…
Cancel
Save