1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-10-27 04:12:28 +01:00

use sweetalert modals on delete server

This commit is contained in:
Dane Everitt 2016-01-08 20:26:21 -05:00
parent abed57546b
commit 022143dd86

View File

@ -321,9 +321,20 @@ $(document).ready(function () {
$('select[name="remove_additional[]"]').find('option[value="' + $(this).val() + '"]').prop('disabled', true).prop('selected', false);
});
$('form[data-attr="deleteServer"]').submit(function (event) {
if (confirm('Are you sure that you want to delete this server? There is no going back, all data will immediately be removed.')) {
event.submit();
}
event.preventDefault();
swal({
title: '',
type: 'warning',
text: 'Are you sure that you want to delete this server? There is no going back, all data will immediately be removed.',
showCancelButton: true,
confirmButtonText: 'Delete',
confirmButtonColor: '#d9534f',
closeOnConfirm: false
}, function (confirmed) {
if (confirmed) {
event.submit();
}
});
});
});
</script>