annotate libervia/web/pages/_browser/loading.py @ 1526:fc2bc024600d

build: do not set explicitely `libervia` package: `twisted` needs to be installed, and if we don't specify anything, Hatch looks automatically for all directories containing .py files, so it includes `libervia` and `twisted`.
author Goffi <goffi@goffi.org>
date Thu, 08 Jun 2023 21:07:55 +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()