15 lines
372 B
JavaScript
15 lines
372 B
JavaScript
"use strict";
|
|
function create_notification(title,description,theme,time){
|
|
const myNotification = window.createNotification({
|
|
closeOnClick: true,
|
|
displayCloseButton: true,
|
|
positionClass: 'nfc-top-right',
|
|
theme: theme,
|
|
showDuration: Number(time),
|
|
});
|
|
myNotification({
|
|
title: title,
|
|
message: description
|
|
});
|
|
};
|