| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8" /> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| <script src="https://unpkg.com/streamlit-component-lib@2.0.0/dist/index.js"></script> |
| </head> |
| <body> |
| <script> |
| function sendBrowserTime() { |
| const now = new Date().toISOString(); |
| Streamlit.setComponentValue(now); |
| Streamlit.setFrameHeight(0); |
| } |
| |
| function onRender(event) { |
| const { disabled } = event.detail.args || {}; |
| if (!disabled) { |
| sendBrowserTime(); |
| } |
| } |
| |
| Streamlit.events.addEventListener(Streamlit.RENDER_EVENT, onRender); |
| Streamlit.setComponentReady(); |
| Streamlit.setFrameHeight(0); |
| </script> |
| </body> |
| </html> |
|
|