0x800a01bd - JavaScript runtime error: Object doesn't support this action
omarpando opened this issue · 0 comments
omarpando commented
This error occurs when the sweet alert pops up and you press any key.
Using IE 11
Code:
swal({
title: "Are you sure?",
text: "Delete : " + fileName,
type: 'error',
showCancelButton: true,
confirmButtonClass: "btn-danger",
confirmButtonText: "Yes, delete it",
cancelButtonText: "No, cancel",
closeOnConfirm: false,
closeOnCancel: false
},
function (isConfirm) {
if (isConfirm) {
//Do something
} else {
//Do something else
}
});