Mercurial > libervia-web
annotate libervia/web/pages/_browser/loading.py @ 1553:83c2a6faa2ae
browser (calls): screen sharing implementation:
- the new screen sharing button toggle screen sharing state
- the button reflect the screen sharing state (green crossed when not sharing, red
uncrossed otherwise)
- the screen sharing stream replaces the camera one, and vice versa. No re-negociation is
needed.
- stopping the sharing through browser's dialog is supported
- the screen sharing button is only visibile if supported by the platform
rel 432
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 14 Aug 2023 16:49:02 +0200 |
parents | eb00d593801d |
children |
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() |