From 3e96cc2082d882dd1a242592a507f45a4a43bd7e Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Fri, 5 Mar 2021 11:47:23 -0800 Subject: [PATCH] Added time to notifications. --- views/default-mobile.handlebars | 4 ++-- views/default.handlebars | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/views/default-mobile.handlebars b/views/default-mobile.handlebars index d2d13abf..53d4f9d2 100644 --- a/views/default-mobile.handlebars +++ b/views/default-mobile.handlebars @@ -5377,12 +5377,12 @@ r += '
'; if (icon) { r += '
'; } - r += '
X
' + t + EscapeHtml(n.text) + '
'; + r += '
X
' + t + EscapeHtml(n.text) + '
' + printDateTime(d) + '
'; } } var deleteall = ''; if (notifications.length > 1) { deleteall = '
' + "Clear all" + '
'; } - QH('notifiyBox', '
' + r + '
' + deleteall); + QH('notifiyBox', '
' + r + deleteall + '
'); } // A notification was selected diff --git a/views/default.handlebars b/views/default.handlebars index b51bdbb9..235454c9 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -13549,12 +13549,12 @@ r += '
'; if (icon) { r += '
'; } - r += '
X
' + t + EscapeHtml(n.text) + '
'; + r += '
X
' + t + EscapeHtml(n.text) + '
' + printDateTime(d) + '
'; } } var deleteall = ''; if (notifications.length > 1) { deleteall = '
' + "Clear all" + '
'; } - QH('notifiyBox', '
' + r + '
' + deleteall ); + QH('notifiyBox', '
' + r + deleteall + '
' ); } // A notification was selected