mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2024-12-20 00:41:48 +03:00
1a99aae933
- 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
20 lines
No EOL
534 B
HTML
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> |