Display the number of notifications on page title.

This commit is contained in:
Pierre HUBERT
2018-11-24 16:01:45 +01:00
parent d49b04e6fb
commit 46bb22b17b
15 changed files with 89 additions and 11 deletions

View File

@ -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({

View File

@ -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({