use sweetalert modals on delete server
This commit is contained in:
parent
abed57546b
commit
022143dd86
1 changed files with 14 additions and 3 deletions
|
@ -321,10 +321,21 @@ $(document).ready(function () {
|
||||||
$('select[name="remove_additional[]"]').find('option[value="' + $(this).val() + '"]').prop('disabled', true).prop('selected', false);
|
$('select[name="remove_additional[]"]').find('option[value="' + $(this).val() + '"]').prop('disabled', true).prop('selected', false);
|
||||||
});
|
});
|
||||||
$('form[data-attr="deleteServer"]').submit(function (event) {
|
$('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.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();
|
event.submit();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
@endsection
|
@endsection
|
||||||
|
|
Loading…
Reference in a new issue