1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

added unidentified indicators

This commit is contained in:
Luke Pulverenti 2014-02-28 23:12:56 -05:00
parent e7a8a5930b
commit 08921bdaaf
4 changed files with 30 additions and 21 deletions

View file

@ -131,16 +131,16 @@
html += '<div class="notificationContent">';
html += '<p class="notificationName">' + notification.Name + '</p>';
html += '<p style="margin: .4em 0 .25em;" class="notificationName">' + notification.Name + '</p>';
html += '<p>' + humane_date(notification.Date) + '</p>';
html += '<p style="margin: .25em 0;">' + humane_date(notification.Date) + '</p>';
if (notification.Description) {
html += '<p>' + notification.Description + '</p>';
html += '<p style="margin: .25em 0;">' + notification.Description + '</p>';
}
if (notification.Url) {
html += '<p><a href="' + notification.Url + '" target="_blank">More information</a></p>';
html += '<p style="margin: .25em 0;"><a href="' + notification.Url + '" target="_blank">More information</a></p>';
}
html += '</div>';