18 lines
542 B
PHP
18 lines
542 B
PHP
|
<script charset="utf-8">
|
||
|
function showAlert(text) {
|
||
|
console.log("[INFO] Function showAlert() called.");
|
||
|
$("#alert").html(text);
|
||
|
$("#alert").slideDown().delay(<?php echo $GLOBALS['ALERT_DISSAPEAR_IN']*1000 ?>).slideUp();
|
||
|
}
|
||
|
|
||
|
<?php if (Alert::defined()): ?>
|
||
|
setTimeout(function(){ showAlert("<?php echo Alert::get() ?>") }, 500);
|
||
|
<?php endif; ?>
|
||
|
|
||
|
$(window).click(function() {
|
||
|
$("#alert").hide();
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<div id="alert" class="alert <?php echo (Alert::status()==ALERT_STATUS_FAIL)?'alert-danger':'alert-success' ?>"></div>
|