mirror of
https://github.com/pierre42100/ComunicWeb
synced 2025-06-19 12:25:16 +00:00
Display the number of notifications on page title.
This commit is contained in:
@ -72,7 +72,7 @@ ComunicWeb.pages.userPage.accessForbidden = {
|
||||
showBasicInfos: function(userInfos, target){
|
||||
|
||||
//Update page title
|
||||
document.title = userInfos.firstName + " " + userInfos.lastName;
|
||||
ComunicWeb.common.pageTitle.setTitle(userInfos.firstName + " " + userInfos.lastName);
|
||||
|
||||
//Create box root
|
||||
var boxRoot = createElem2({
|
||||
|
@ -121,7 +121,7 @@ ComunicWeb.pages.userPage.main = {
|
||||
displayUserPage: function(infos, params, target){
|
||||
|
||||
//Update page title
|
||||
document.title = infos.firstName + " " + infos.lastName;
|
||||
ComunicWeb.common.pageTitle.setTitle(infos.firstName + " " + infos.lastName);
|
||||
|
||||
//Create the section class content
|
||||
var sectionContent = createElem2({
|
||||
|
Reference in New Issue
Block a user