UNPKG
rstarter-supporthq
Version:
latest (1.0.0)
1.0.0
rstarter-supporthq
/
src
/
Utilitis
/
general.js
8 lines
(7 loc)
•
257 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
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}