annotate libervia/web/pages/_browser/loading.py @ 1536:dc81403a5b2f

browser: chat page: since the move to Brython, the chat was really basic and not really usable. Now that dynamism has been re-implemented correctly in the new frontend, a real advanced chat page can be done. This is the first draft in this direction.
author Goffi <goffi@goffi.org>
date Wed, 28 Jun 2023 10:05:13 +0200
parents eb00d593801d
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()