mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-27 06:19:21 +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);
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|