1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-03 09:17:37 +01:00

Cambio grafica messaggi di conferma salvataggio con toastr

This commit is contained in:
loviuz 2023-12-01 17:14:54 +01:00
parent 72c4f0d0f8
commit d0a6957f5a

View File

@ -630,10 +630,12 @@ if (Auth::check()) {
// Infomazioni
if (!empty($messages['info'])) {
foreach ($messages['info'] as $value) {
echo '
<div class="alert alert-success push">
<i class="fa fa-check"></i> '.$value.'
</div>';
echo '
<script>
$(document).ready( function(){
window.parent.toastr.success("'.$value.'", toastr.options);
});
</script>';
}
}