mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-12-24 01:48:50 +00:00
Display images associated with comments.
This commit is contained in:
parent
9d418187eb
commit
b8e76b05ff
@ -4,6 +4,16 @@
|
||||
* @author Pierre HUBERT
|
||||
*/
|
||||
|
||||
.post-comments{
|
||||
.post-comments {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.post-comments .comment-img-contener {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.post-comments img.comment-img {
|
||||
width: 100px !important;
|
||||
height: auto !important;
|
||||
float: none;
|
||||
}
|
@ -118,6 +118,35 @@ ComunicWeb.components.comments.ui = {
|
||||
});
|
||||
|
||||
//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;
|
||||
}
|
||||
|
||||
}
|
||||
},
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user