1swal({
2 title: "Deleted!",
3 text: "Your row has been deleted.",
4 button: "Close", // Text on button
5 icon: "success", //built in icons: success, warning, error, info
6 timer: 3000, //timeOut for auto-close
7 buttons: {
8 confirm: {
9 text: "OK",
10 value: true,
11 visible: true,
12 className: "",
13 closeModal: true
14 },
15 cancel: {
16 text: "Cancel",
17 value: false,
18 visible: true,
19 className: "",
20 closeModal: true,
21 }
22 }
23 });