Ready to prepare user page implementation

This commit is contained in:
Pierre
2017-12-10 08:13:22 +01:00
parent 6251d47ca0
commit 7cd4348066
6 changed files with 73 additions and 42 deletions

View File

@ -0,0 +1,24 @@
/**
* User page
*
* Display the profile of the user
*
* Main file
*
* @author Pierre HUBERT
*/
ComunicWeb.pages.userPage.main = {
/**
* Open user page
*
* @param {Object} params Parametres required to open the page
* @param {HTMLElement} target The target for the user page
*/
open: function(params, target){
console.log(params);
}
}