function showAndHide()

in src/browser/SplashScreenProxy.js [140:148]


function showAndHide () {
    if (showSplashScreen) {
        SplashScreen.show();

        window.setTimeout(function () {
            SplashScreen.hide();
        }, splashScreenDelay);
    }
}