ComunicWeb/assets/js/pages/home/landingPage.js
2017-05-24 14:31:56 +02:00

29 lines
874 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.");
//Prepare additional data
var additionalData = {};
//Preparing next actions
var afterParsingTemplate = function(){
//Change home background
byId("homeLandingScreen").style.backgroundImage = "url('"+ComunicWeb.__config.assetsURL + "img/pages/home/landingPage/img_background.jpg')";
};
//Apply template
ComunicWeb.common.page.getAndShowTemplate(targetElement, additionalData, "pages/home/landingPage/home.tpl", afterParsingTemplate, true);
}
};