annotate libervia/pages/_browser/loading.py @ 1505:a169cbc315f0

server: don't wait anymore for libervia app to be fully started: following change in backend, libervia app are started and the loading workflow continue immediately, the proxy is created only when the app is known to be actually started (through the `application_started` signal or a flag received when starting the application). This avoid stopping the loading of website for a long time, or breaking when a timeout is reached.
author Goffi <goffi@goffi.org>
date Sat, 04 Mar 2023 18:37:17 +0100
parents 08739952a18f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1371
08739952a18f browser: new `loading` module to remove loading screen
Goffi <goffi@goffi.org>
parents:
diff changeset
1 """manage common dialogs"""
08739952a18f browser: new `loading` module to remove loading screen
Goffi <goffi@goffi.org>
parents:
diff changeset
2
08739952a18f browser: new `loading` module to remove loading screen
Goffi <goffi@goffi.org>
parents:
diff changeset
3 from browser import document
08739952a18f browser: new `loading` module to remove loading screen
Goffi <goffi@goffi.org>
parents:
diff changeset
4
08739952a18f browser: new `loading` module to remove loading screen
Goffi <goffi@goffi.org>
parents:
diff changeset
5 def remove_loading_screen():
08739952a18f browser: new `loading` module to remove loading screen
Goffi <goffi@goffi.org>
parents:
diff changeset
6 print("removing loading screen")
08739952a18f browser: new `loading` module to remove loading screen
Goffi <goffi@goffi.org>
parents:
diff changeset
7 document['loading_screen'].remove()