mirror of
https://github.com/pierre42100/ComunicWeb
synced 2025-06-19 20:35:16 +00:00
Progress on discussions creation form
This commit is contained in:
@ -138,7 +138,7 @@ var ComunicWeb = {
|
||||
/**
|
||||
* Show a transparent wait splash screen
|
||||
*/
|
||||
showTransparentWaitSplashScreen: function(){},
|
||||
showTransparentWaitSplashScreen: function(target){},
|
||||
|
||||
/**
|
||||
* Open a page
|
||||
|
@ -69,20 +69,24 @@ ComunicWeb.common.page = {
|
||||
/**
|
||||
* Show a transparent wait splash screen
|
||||
*
|
||||
* @returns {elem} The splash screen element to let it being deleted
|
||||
* @param {HTMLElement} target Optionnal, defines the target of the transparent splashscreen
|
||||
* @returns {HTMLElement} The splash screen element to let it being deleted
|
||||
*/
|
||||
showTransparentWaitSplashScreen: function(){
|
||||
showTransparentWaitSplashScreen: function(target){
|
||||
//Create the element
|
||||
var waitSplashScreen = document.createElement("div");
|
||||
var waitSplashScreen = createElem("div");
|
||||
waitSplashScreen.className = "transparentWaitSplashScreen";
|
||||
|
||||
//Populate it
|
||||
var imgElem = document.createElement("img");
|
||||
var imgElem = createElem("img");
|
||||
imgElem.src = ComunicWeb.__config.assetsURL+"img/barProgress.gif";
|
||||
waitSplashScreen.appendChild(imgElem);
|
||||
|
||||
//Apply splash screen
|
||||
document.body.appendChild(waitSplashScreen);
|
||||
if(!target)
|
||||
document.body.appendChild(waitSplashScreen);
|
||||
else
|
||||
target.appendChild(waitSplashScreen);
|
||||
|
||||
//Return wait splash screen element
|
||||
return waitSplashScreen;
|
||||
|
Reference in New Issue
Block a user