@launchmenu/core
Version:
An environment for visual keyboard controlled applets
37 lines (35 loc) • 973 B
HTML
<html>
<head>
<meta charset="UTF-8" />
<title>LaunchMenu</title>
<style>
html,
body,
#root {
margin: 0;
width: 100%;
height: 100%;
overflow: hidden;
box-sizing: border-box;
font-family: Test;
}
.noTransition * {
/* Disable the visual transition, while still allowing the transition end event to fire */
transition-duration: 0.001s ;
}
</style>
</head>
<body>
<div id="root">Loading</div>
<script>
// Some code to allow for app.js to be a node module without erroring
exports = {};
</script>
<script src="./app.js"></script>
<script>
// Loaded in app.js
startApplication();
</script>
</body>
</html>