mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-26 05:49:22 +00:00
Can enter in conversation with users from their pages
This commit is contained in:
parent
322528a974
commit
5fc705c8dc
@ -60,6 +60,33 @@ ComunicWeb.pages.userPage.profileInfos = {
|
||||
innerHTML: infos.firstName + " " + infos.lastName
|
||||
});
|
||||
|
||||
//Create button area
|
||||
var buttonsArea = createElem2({
|
||||
appendTo: boxBody,
|
||||
type: "div",
|
||||
});
|
||||
buttonsArea.style.textAlign = "center";
|
||||
buttonsArea.style.marginTop = "2px";
|
||||
buttonsArea.style.marginBottom = "2px";
|
||||
|
||||
if(signed_in()) {
|
||||
|
||||
if(userID() != infos.userID){
|
||||
|
||||
//Add a button to help user create a conversation with the user
|
||||
var conversationButton = createElem2({
|
||||
appendTo: buttonsArea,
|
||||
type: "button",
|
||||
class: "btn btn-default",
|
||||
innerHTML: "<i class='fa fa-comments'></i>"
|
||||
});
|
||||
|
||||
conversationButton.onclick = function(){
|
||||
ComunicWeb.components.conversations.manager.openPrivate(infos.userID);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//Add list of informations about user
|
||||
var listInfos = createElem2({
|
||||
appendTo: boxBody,
|
||||
@ -94,7 +121,7 @@ ComunicWeb.pages.userPage.profileInfos = {
|
||||
createElem2({
|
||||
appendTo: accountCreationLi,
|
||||
type: "b",
|
||||
innerHTML: "Member since"
|
||||
innerHTML: "Member for"
|
||||
});
|
||||
createElem2({
|
||||
appendTo: accountCreationLi,
|
||||
|
Loading…
Reference in New Issue
Block a user