Created friends list modal script file

This commit is contained in:
Pierre
2018-03-05 18:50:56 +01:00
parent 4fcadb0355
commit 3dfd91102f
4 changed files with 34 additions and 1 deletions

View File

@ -0,0 +1,18 @@
/**
* 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);
}
};