1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Settings/Notifications/DeleteView.js

20 lines
516 B
JavaScript
Raw Normal View History

2013-05-29 05:49:17 +03:00
'use strict';
2013-06-19 04:02:23 +03:00
define(['app', 'marionette'], function (App, Marionette) {
return Marionette.ItemView.extend({
2013-05-29 05:49:17 +03:00
template: 'Settings/Notifications/DeleteTemplate',
events: {
2013-06-27 10:37:39 +03:00
'click .x-confirm-delete': '_removeNotification'
2013-05-29 05:49:17 +03:00
},
2013-06-27 10:37:39 +03:00
_removeNotification: function () {
2013-05-29 05:49:17 +03:00
this.model.destroy({
wait : true,
2013-06-19 04:02:23 +03:00
success: function () {
App.modalRegion.closeModal();
2013-05-29 05:49:17 +03:00
}
});
}
});
});