mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-13 12:19:25 +00:00
18 lines
419 B
HTML
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>
|