index.html 367 B

1234567891011121314
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <h1>This is the main window!</h1>
  5. <script>
  6. const { invoke } = window.__TAURI__.core;
  7. document.addEventListener('DOMContentLoaded', () => {
  8. // we delay here just so we can see the splashscreen for a while
  9. setTimeout(() => invoke('close_splashscreen'), 2000)
  10. })
  11. </script>
  12. </body>
  13. </html>