10 lines
430 B
JavaScript
10 lines
430 B
JavaScript
|
runAfterLoad(() => {
|
||
|
displayNotificationsInTitle();
|
||
|
}, ".*");
|
||
|
|
||
|
function displayNotificationsInTitle(){
|
||
|
let menu = document.getElementById('materialize-menu-dropdown');
|
||
|
let menuDropdowns = Array.from(menu.querySelectorAll('ul.dropdown')).slice(-1)[0];
|
||
|
let notificationText = menuDropdowns.innerText.split(" ")[3];
|
||
|
document.querySelector('head > title').insertAdjacentText('afterbegin', notificationText.split(" ")[1] + ' ');
|
||
|
}
|