/* Functioon to remove the notification with animation */ static remove_notification(element) { try { /* Get animation data */ let on_animation = element.getAttribute('data-on-animation'); let off_animation = element.getAttribute('data-off-animation'); /* Hide the element with an animation */ element.classList.add(`off-${off_animation}`); /* Remove the element from the DOM */ window.setTimeout(() => { element.parentNode.removeChild(element); /* Recalculate position of other notifications */ AltumCodeManager.reposition(); }, 400); } catch(event) { // ^_^ } }

Sign in

Lost Password