mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 12:39:22 +00:00
16 lines
352 B
JavaScript
16 lines
352 B
JavaScript
|
/**
|
||
|
* Landing home page
|
||
|
*
|
||
|
* @author Pierre HUBERT
|
||
|
*/
|
||
|
ComunicWeb.pages.home.landingPage = {
|
||
|
/**
|
||
|
* Display home landing page
|
||
|
*
|
||
|
* @param {element} targetElement Where the page will be applied
|
||
|
*/
|
||
|
display: function(targetElement){
|
||
|
//Log action
|
||
|
ComunicWeb.debug.logMessage("Open home landing page.");
|
||
|
}
|
||
|
};
|