ComunicWeb/assets/js/pages/home/landingPage.js

33 lines
935 B
JavaScript
Raw Normal View History

2017-05-22 16:12:50 +00:00
/**
* 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.");
2017-05-22 16:33:39 +00:00
2017-05-25 13:25:39 +00:00
//Change page title
document.title = "Comunic, a transparent social network";
2017-05-22 16:33:39 +00:00
//Prepare additional data
2018-05-05 08:55:36 +00:00
var additionalData = {
//About the website URL
about_url: ComunicWeb.__config.aboutWebsiteURL,
2018-05-05 08:55:36 +00:00
//Background image URL
backgroundImage: ComunicWeb.__config.assetsURL + "img/pages/home/landingPage/img_background.jpg"
2017-05-22 16:33:39 +00:00
};
//Apply template
2018-05-05 08:55:36 +00:00
ComunicWeb.common.page.getAndShowTemplate(targetElement, additionalData, "pages/home/landingPage/home.tpl", false, true);
2017-05-22 16:12:50 +00:00
}
};