mirror of
https://github.com/pierre42100/ComunicWeb
synced 2025-02-17 03:12:43 +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.");
|
|
}
|
|
}; |