mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-26 15:58:50 +00:00
11 lines
No EOL
508 B
JavaScript
11 lines
No EOL
508 B
JavaScript
// This is called to display a temporary message to the user at the bottom of the screen
|
|
|
|
showSnackbar = function(snackbarText, snackbarColor) {
|
|
var snackbarNotification = document.getElementById("snackbar");
|
|
snackbarNotification.innerHTML = snackbarText;
|
|
snackbarNotification.style.backgroundColor = snackbarColor;
|
|
snackbarNotification.className = "show";
|
|
setTimeout(function() {
|
|
snackbarNotification.className = snackbarNotification.className.replace("show", "");
|
|
}, 4000)
|
|
} |