$(document).ready(function() {
$('.attendance-control[data-state="attendant"] .attendance-label').html('Remover Presença?');
$('.attendance-control[data-state="absent"] .attendance-label').html('Adicionar Presença?');
$('.attendance-control').on('click', function() {
var button = $(this);
if (button.prop('data-state') == 'absent') {
button.prop('disabled', 'disabled');
button.html('Confirmando Presença...');
setTimeout(function(){
button.html('Presente, Remover?');
button.prop('data-state', 'attendant');
button.addClass('btn-danger').removeClass('btn-success');
button.removeProp('disabled');
}, 1500);
} else {
button.prop('disabled', 'disabled');
button.html('Cancelando Presença...');
setTimeout(function(){
button.html('Ausente, Confirmar?');
button.prop('data-state', 'absent');
button.addClass('btn-success').removeClass('btn-danger');
button.removeProp('disabled');
}, 1500);
}
});
});