#19 Last fixes
This commit is contained in:
parent
b1aef75409
commit
08ce64ad8b
|
@ -7,7 +7,6 @@ export function init() {
|
||||||
}, ".*");
|
}, ".*");
|
||||||
|
|
||||||
core.runAfterPathnameChange(() => {
|
core.runAfterPathnameChange(() => {
|
||||||
console.log('CHANGE')
|
|
||||||
updateNotificationsInTitle();
|
updateNotificationsInTitle();
|
||||||
}, ".*");
|
}, ".*");
|
||||||
}
|
}
|
||||||
|
@ -15,9 +14,7 @@ export function init() {
|
||||||
function getNotificationCount() {
|
function getNotificationCount() {
|
||||||
if (core.isLoggedIn()) {
|
if (core.isLoggedIn()) {
|
||||||
let menuUserText = document.getElementById('materialize-menu-dropdown').innerText.split('\n')[4];
|
let menuUserText = document.getElementById('materialize-menu-dropdown').innerText.split('\n')[4];
|
||||||
console.log(menuUserText);
|
|
||||||
let notificationCount = menuUserText.match(/\d+/)?.[0] ?? 0;
|
let notificationCount = menuUserText.match(/\d+/)?.[0] ?? 0;
|
||||||
console.log(notificationCount);
|
|
||||||
return notificationCount;
|
return notificationCount;
|
||||||
} else {
|
} else {
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -28,6 +25,9 @@ function updateNotificationsInTitle() {
|
||||||
let count = getNotificationCount();
|
let count = getNotificationCount();
|
||||||
|
|
||||||
if (helper.assigned(count) && count > 0) {
|
if (helper.assigned(count) && count > 0) {
|
||||||
document.title = `(${count}) ${document.title}`;
|
// document.title is updated after the event is triggered, so we delay our title update by a reasonable time
|
||||||
|
setTimeout(() => {
|
||||||
|
document.title = `(${count}) ${document.title}`;
|
||||||
|
}, 100);
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue