mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 17:05:34 +00:00
This is part of the fix chain for #5853. Split ios-host.js out from keyboard.html in order to make it easier to debug and mock. No changes to the content of the sscript, just moving it here.
16 lines
668 B
HTML
16 lines
668 B
HTML
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
<title>Keyman</title>
|
|
<script src="keymanios.js"></script>
|
|
<script src="keyman-sentry.js"></script>
|
|
<script src="ios-host.js"></script>
|
|
<style type="text/css">
|
|
body {background-color: rgb(210,214,220);}
|
|
</style>
|
|
</head>
|
|
<body class="kmw-embedded keyman-app">
|
|
<textarea id="ta" cols="1" rows="1" style="visibility:hidden;" disabled></textarea>
|
|
</body>
|
|
</html>
|