UNPKG

rstarter-supporthq

Version:

8 lines (7 loc) 257 B
function notify(massage,time){ var sneakbar=document.getElementById("snackbar"); sneakbar.innerText=massage; sneakbar.classList.add("show"); setTimeout(function(){ sneakbar.classList.remove("show") }, time); } module.exports={notify}