1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-17 10:45:49 +02:00
2013-06-18 18:02:23 -07:00

20 lines
514 B
JavaScript

'use strict';
define(['app', 'marionette'], function (App, Marionette) {
return Marionette.ItemView.extend({
template: 'Settings/Notifications/DeleteTemplate',
events: {
'click .x-confirm-delete': 'removeNotification'
},
removeNotification: function () {
this.model.destroy({
wait : true,
success: function () {
App.modalRegion.closeModal();
}
});
}
});
});