From 1a0e6b13ab161479e1da78ba4c55be6c6bd571ba Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 14 Oct 2024 16:26:49 +0300 Subject: [PATCH] Fix bug 70896 --- apps/common/main/lib/controller/LaunchController.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common/main/lib/controller/LaunchController.js b/apps/common/main/lib/controller/LaunchController.js index d39ea65da8..a7a77e63c4 100644 --- a/apps/common/main/lib/controller/LaunchController.js +++ b/apps/common/main/lib/controller/LaunchController.js @@ -50,7 +50,7 @@ define([ !app.postLaunchScripts && (app.postLaunchScripts = []); // console.log('on_app_ready', app.postLaunchScripts); - require(app.postLaunchScripts, function () { + require({waitSeconds: 0}, app.postLaunchScripts, function () { if (!!Common.UI.ScreenReaderFocusManager) { Common.UI.ScreenReaderFocusManager.init(me.api); }