Simplify calls

This commit is contained in:
Pierre HUBERT 2021-02-20 10:53:21 +01:00
parent 0f597f8212
commit 69092db808
2 changed files with 4 additions and 4 deletions

View File

@ -31,17 +31,17 @@ const System = {
//Enable page URLs detection //Enable page URLs detection
window.location.changed = function(e){ window.location.changed = function(e){
ComunicWeb.common.page.location_updated(e); Page.location_updated(e);
} }
/** /**
* Prepare login * Prepare login
*/ */
//Clean current page content //Clean current page content
ComunicWeb.common.page.emptyPage(); Page.emptyPage();
//Show a wait splash screen //Show a wait splash screen
ComunicWeb.common.page.showWaitSplashScreen("Starting up..."); Page.showWaitSplashScreen("Starting up...");
/** /**
* Language initator * Language initator

View File

@ -7,5 +7,5 @@
//Anonymous function //Anonymous function
(function(){ (function(){
//Launch app //Launch app
ComunicWeb.common.system.init(); System.init();
})(); })();