mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 12:39:22 +00:00
24 lines
364 B
JavaScript
24 lines
364 B
JavaScript
/**
|
|
* 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);
|
|
|
|
}
|
|
|
|
} |