I have an action created by the SweetAlert plugin that needs a button with very long text because it is a very sensitive option and can lead to errors.
swal({
title: data['title'],
text: data['msg'],
type: 'warning',
showConfirmButton: true,
showCancelButton: true,
closeOnConfirm: true,
confirmButtonText: 'Confirmar exclusão (Essa ação não é recomendada \n, <small>Deletar este colaborador pode acarretar em inconsistencias nos dados anteriores, você pode torna-lo inativo, ou registrar um desligamento de funcionário.</small>.)',
cancelButtonText: 'Cancelar e voltar'
},
function (isConfirm) {
alert();
});
My question is basically:
How to make the plugin read the last HTML for 'confirmButtonText'? Or you can not do this?