mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-22 20:19:21 +00:00
28 lines
597 B
JavaScript
28 lines
597 B
JavaScript
/**
|
|
* Account created page
|
|
*
|
|
* @author Pierre HUBERT
|
|
*/
|
|
|
|
ComunicWeb.pages.accountCreated = {
|
|
|
|
/**
|
|
* Open the account created page
|
|
*
|
|
* @param {Object} additionnalData Additionnal data passed in the method
|
|
* @param {element} target Where the page will be applied
|
|
*/
|
|
open: function(additionnalData, target){
|
|
|
|
var data = {
|
|
|
|
//Background image URL
|
|
background_img_url: ComunicWeb.__config.assetsURL + "img/pages/accountCreated/background.jpg"
|
|
|
|
};
|
|
|
|
//Apply the template
|
|
ComunicWeb.common.page.getAndShowTemplate(target, data, "pages/accountCreated.tpl", null, true);
|
|
}
|
|
|
|
} |