#37 Implement v1 Web Apps #41

Merged
logan merged 58 commits from #37-implement-webapps into master 2023-08-04 23:46:50 -04:00
Showing only changes of commit c0927601b9 - Show all commits

View File

@@ -44,7 +44,7 @@ function createToast(notificationMessage){
toastTitle.appendChild(document.createTextNode("Server Notification")); toastTitle.appendChild(document.createTextNode("Server Notification"));
const toastTime = document.createElement('small'); const toastTime = document.createElement('small');
toastTime.appendChild(document.createTextNode(Date.now().toLocaleString())); toastTime.appendChild(document.createTextNode(new Date(Date.now()).toLocaleString()));
const toastClose = document.createElement('button'); const toastClose = document.createElement('button');
toastClose.type = 'button'; toastClose.type = 'button';