26 lines
611 B
JSON
Executable File
26 lines
611 B
JSON
Executable File
<!-- required files -->
|
|
<script src="../assets/plugins/sweetalert/dist/sweetalert.min.js"></script>
|
|
|
|
<script>
|
|
swal({
|
|
title: 'Are you sure?',
|
|
text: 'You will not be able to recover this imaginary file!',
|
|
icon: 'info',
|
|
buttons: {
|
|
cancel: {
|
|
text: 'Cancel',
|
|
value: null,
|
|
visible: true,
|
|
className: 'btn btn-default',
|
|
closeModal: true,
|
|
},
|
|
confirm: {
|
|
text: 'Primary',
|
|
value: true,
|
|
visible: true,
|
|
className: 'btn btn-primary',
|
|
closeModal: true
|
|
}
|
|
}
|
|
});
|
|
</script> |