Guest User

Untitled

a guest
Oct 18th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. $(document).on('click', '.borrar', function (event) {
  2. swal({
  3. title: "¿Estás seguro?",
  4. text: "Estás por borrar un proyecto, este no se podrá recuperar más adelante.",
  5. type: "warning",
  6. showCancelButton: true,
  7. cancelButtonText: "Cancelar",
  8. confirmButtonColor: "#DD6B55",
  9. confirmButtonText: "Continuar",
  10. closeOnConfirm: false
  11. },
  12. function (isConfirm) {
  13. if(isConfirm){
  14. swal({
  15. title: "Eliminado",
  16. text: "Eliminaste el registro del proyecto.",
  17. type: "success"
  18. }, function(){
  19. event.preventDefault();
  20. $(this).closest('tr').remove();
  21. });
  22. }
  23. else{
  24. swal("No se ha eliminado.","El registro NO ha sido eliminado.","error");
  25. delay(2000);
  26. }
  27. });
Add Comment
Please, Sign In to add comment