mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-02-06 20:47:00 +00:00
15 lines
367 B
HTML
15 lines
367 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<h1>This is the main window!</h1>
|
|
|
|
<script>
|
|
const { invoke } = window.__TAURI__.core;
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
// we delay here just so we can see the splashscreen for a while
|
|
setTimeout(() => invoke('close_splashscreen'), 2000)
|
|
})
|
|
</script>
|
|
</body>
|
|
</html>
|