diff --git a/public/src/forum/footer.js b/public/src/forum/footer.js index b577647aa6..4c05432027 100644 --- a/public/src/forum/footer.js +++ b/public/src/forum/footer.js @@ -126,6 +126,13 @@ notifEl.innerHTML = 'You have no notifications'; notifFrag.appendChild(notifEl); } + + // Add dedicated link to /notifications + notifEl.removeAttribute('data-nid'); + notifEl.className = 'pagelink'; + notifEl.innerHTML = 'See all Notifications'; + notifFrag.appendChild(notifEl); + notifList.appendChild(notifFrag); if (data.unread.length > 0) notifIcon.className = 'icon-circle active';