Files
khadhroony-solana-project/crates/ksp-app-config-desk/frontend/ts/splash.ts
2026-08-16 11:11:09 +02:00

12 lines
423 B
TypeScript

// file: crates/ksp-app-config-desk/frontend/ts/splash.ts
// version: 1
import { getCurrentWindow } from "@tauri-apps/api/window";
document.addEventListener("DOMContentLoaded", () => {
const status = document.querySelector<HTMLElement>("#splash-status");
if (status) {
status.textContent = `Frontend chargé dans la fenêtre '${getCurrentWindow().label}'. Lifecycle complet prévu en pre.008.`;
}
});