an-anime-game-launcher/settings.html
Observer KRypt0n_ 1a99aae933
Several changes
- added template settings html file
- removed excess code from the entry file
- fixed windows loading
- added proper main window title
- added settings button events
- also `index.ts` now works through `promisify()`
- added `Launcher.showSettings()` method
- fixed `promisify()` issues related to `callAtOnce` property
2021-12-24 21:57:27 +02:00

20 lines
No EOL
534 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" lang="sass" href="/src/sass/basic.sass" />
</head>
<body>
<div id="app">
<h1>{{ title }}</h1>
</div>
<script src="neutralino.js"></script>
<script type="module" src="/src/entry.js"></script>
<script type="module" lang="ts" src="/src/pages/settings.ts"></script>
</body>
</html>