spiegel-keyman/index.html
2018-10-05 15:33:55 -06:00

18 lines
419 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Keyman/LMLayer demo</title>
</head>
<body>
<p>
Run a server to get this working:
<code>python -m BasicHTTPServer 8000</code>
</p>
<script src="index.js"></script>
<script>
lm = new LMLayer;
lm.initialize().then(conf => console.log('Initialized! Config:', conf));
</script>
</body>
</html>