only fade out success alerts

This commit is contained in:
neingeist 2018-11-12 23:46:10 +01:00
parent 64c35cf502
commit 50a7385716

View file

@ -34,7 +34,7 @@
format:'YYYY-MM-DD HH:mm', format:'YYYY-MM-DD HH:mm',
sideBySide: true sideBySide: true
}); });
$(".alert").delay(4000).fadeOut(500, function() { $(".alert-success").delay(4000).fadeOut(500, function() {
$(this).alert('close'); $(this).alert('close');
}); });
}); });