diff options
| author | Ron Lucke <lucke@elan-ev.de> | 2025-01-13 21:15:18 +0100 |
|---|---|---|
| committer | Ron Lucke <lucke@elan-ev.de> | 2025-01-13 21:15:18 +0100 |
| commit | 60f2b28874a7e3082b7806858f23bcc4a9ac064e (patch) | |
| tree | 392006ce98c061ff16ab88f75c891620e22d06b6 /resources/assets/javascripts/lib | |
| parent | 5ad1fb5b6dd0a801e2f5d9fc6c0d59db831a4fd0 (diff) | |
Revert "fix #5107"biest-5044
This reverts commit 5ad1fb5b6dd0a801e2f5d9fc6c0d59db831a4fd0.
Diffstat (limited to 'resources/assets/javascripts/lib')
| -rw-r--r-- | resources/assets/javascripts/lib/personal_notifications.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/assets/javascripts/lib/personal_notifications.js b/resources/assets/javascripts/lib/personal_notifications.js index a70e82e..798566f 100644 --- a/resources/assets/javascripts/lib/personal_notifications.js +++ b/resources/assets/javascripts/lib/personal_notifications.js @@ -170,11 +170,11 @@ const PersonalNotifications = { if (really_new > 0) { $('#notification_marker') .data('seen', false); - $('#notification-wrapper') + $('#avatar-menu-container') .addClass('alert'); PageLayout.title_prefix = '(!) '; } else { - $('#notification-wrapper').removeClass('alert'); + $('#avatar-menu-container').removeClass('alert'); PageLayout.title_prefix = ''; } if (count) { @@ -227,7 +227,7 @@ const PersonalNotifications = { $.get(STUDIP.URLHelper.getURL('dispatch.php/jsupdater/notifications_seen')).then(time => { $('#notification_marker') .data('lastvisit', time); - $('#notification-wrapper') + $('#avatar-menu-container') .removeClass('alert'); }); |
