mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 12:39:22 +00:00
18 lines
290 B
JavaScript
18 lines
290 B
JavaScript
|
/**
|
||
|
* Friends list modal
|
||
|
*
|
||
|
* @author Pierre HUBERT
|
||
|
*/
|
||
|
|
||
|
ComunicWeb.components.friends.listModal = {
|
||
|
|
||
|
/**
|
||
|
* Display the box that contains the list of friends of the user
|
||
|
*
|
||
|
* @param {number} userID The ID of the target user
|
||
|
*/
|
||
|
display: function(userID){
|
||
|
alert(userID);
|
||
|
}
|
||
|
|
||
|
};
|