mirror of
https://github.com/hkalexling/Mango.git
synced 2025-08-02 19:05:32 -04:00
7 lines
246 B
JavaScript
7 lines
246 B
JavaScript
const alert = (level, text) => {
|
|
$('#alert').empty();
|
|
const html = `<div class="uk-alert-${level}" uk-alert><a class="uk-alert-close" uk-close></a><p>${text}</p></div>`;
|
|
$('#alert').append(html);
|
|
$("html, body").animate({ scrollTop: 0 });
|
|
};
|