mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 12:39:22 +00:00
23 lines
421 B
JavaScript
23 lines
421 B
JavaScript
|
/**
|
||
|
* Comments UI
|
||
|
*
|
||
|
* @author Pierre HUBERT
|
||
|
*/
|
||
|
|
||
|
ComunicWeb.components.comments.ui = {
|
||
|
|
||
|
/**
|
||
|
* Display a list comments
|
||
|
*
|
||
|
* @param {Object} infos Informations about the comments
|
||
|
* @param {int} postID The ID of the post attached to the comments
|
||
|
* @param {HTMLElement} target The target for the comments
|
||
|
*/
|
||
|
display: function(infos, postID, target){
|
||
|
|
||
|
//First, get informations about the users
|
||
|
|
||
|
|
||
|
},
|
||
|
|
||
|
}
|