Created groups main page

This commit is contained in:
Pierre HUBERT
2018-07-02 08:07:59 +02:00
parent 074b724d68
commit 7ff7bceca3
7 changed files with 151 additions and 1 deletions

View File

@ -90,6 +90,20 @@ ComunicWeb.components.menuBar.authenticated = {
openPage("conversations");
};
//Add groups link
var groupsButton = createElem2({
appendTo: dropdownContent,
type: "li"
});
createElem2({
appendTo: groupsButton,
type: "a",
innerHTML: "Groups"
});
groupsButton.onclick = function(){
openPage("groups");
}
//Add settings link
var settingsButton = createElem2({
appendTo: dropdownContent,