ComunicWeb/assets/js/components/friends/listModal.js

18 lines
290 B
JavaScript
Raw Normal View History

2018-03-05 17:50:56 +00:00
/**
* 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);
}
};