Added conversation page to top menu

This commit is contained in:
Pierre 2018-05-20 14:39:55 +02:00
parent 8777832600
commit f41ac3b107
2 changed files with 14 additions and 13 deletions

View File

@ -77,18 +77,18 @@ ComunicWeb.components.menuBar.authenticated = {
//Add conversations link
// var conversationsButton = createElem2({
// appendTo: dropdownContent,
// type: "li"
// });
// var conversationsLink = createElem2({
// appendTo: conversationsButton,
// type: "a",
// innerHTML: "Conversations"
// });
// conversationsButton.onclick = function(){
// openPage("conversations");
// };
var conversationsButton = createElem2({
appendTo: dropdownContent,
type: "li"
});
var conversationsLink = createElem2({
appendTo: conversationsButton,
type: "a",
innerHTML: "Conversations"
});
conversationsButton.onclick = function(){
openPage("conversations");
};
//Add settings link
var settingsButton = createElem2({

View File

@ -62,7 +62,8 @@ ComunicWeb.pages.conversations.listPane = {
}, 5000);
//Load the list of conversations
//Force load the list of conversations
ComunicWeb.pages.conversations.listPane._curr_list = null;
ComunicWeb.pages.conversations.listPane.refresh_list(boxBody, args);
},