Display images associated with comments.

This commit is contained in:
Pierre 2018-01-22 19:13:31 +01:00
parent 9d418187eb
commit b8e76b05ff
2 changed files with 40 additions and 1 deletions

View File

@ -7,3 +7,13 @@
.post-comments { .post-comments {
padding: 10px; padding: 10px;
} }
.post-comments .comment-img-contener {
text-align: center;
}
.post-comments img.comment-img {
width: 100px !important;
height: auto !important;
float: none;
}

View File

@ -118,6 +118,35 @@ ComunicWeb.components.comments.ui = {
}); });
//Add comment image (if any) //Add comment image (if any)
if(infos.img_url != null){
var commentImageContener = createElem2({
appendTo: commentText,
type: "div",
class: "comment-img-contener"
});
var commentImageLink = createElem2({
appendTo: commentImageContener,
type: "a",
href: infos.img_url
});
createElem2({
appendTo: commentImageLink,
type: "img",
class: "comment-img",
src: infos.img_url
});
commentImageLink.onclick = function(){
$(this).ekkoLightbox({
alwaysShowClose: true,
});
return false;
}
}
}, },
} }