4 lines
177 B
JavaScript
4 lines
177 B
JavaScript
document.addEventListener('DOMContentLoaded', async function () {
|
|
await new Promise(resolve => setTimeout(resolve, 7000));
|
|
window.electronAPI.changeContent('login');
|
|
}); |