Merge branch 'develop' into feature/test_table_design

This commit is contained in:
Yuriy Kulakov
2021-04-25 20:34:44 +03:00
23 changed files with 1223 additions and 215 deletions

View File

@@ -0,0 +1,14 @@
"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
});
};