We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e8fdef commit eaf41fcCopy full SHA for eaf41fc
1 file changed
src/player/modules/InterfaceModal/module.js
@@ -28,6 +28,11 @@ FrameTrail.defineModule('InterfaceModal', function(FrameTrail){
28
$(FrameTrail.getState('target')).append(loadingScreen);
29
$(FrameTrail.getState('target')).append(statusMessage);
30
31
+ // Show immediately so no app content is visible before the loading screen covers it.
32
+ // jQuery's fadeIn() is a no-op on an already-visible element, so showLoadingScreen()
33
+ // still works correctly for subsequent calls (after hideLoadingScreen() hides it).
34
+ loadingScreen.show().addClass('active');
35
+
36
37
38
/**
0 commit comments