| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
- <title>Avalonia Sample</title>
- <base href="/" />
- <link href="css/app.css" rel="stylesheet" />
- </head>
- <body>
- <div id="app">Powered by Avalonia</div>
- <div id="blazor-error-ui">
- An unhandled error has occurred.
- <a href="" class="reload">Reload</a>
- <a class="dismiss">🗙</a>
- </div>
- <script src="js/app.js"></script>
- <script src="_framework/blazor.webassembly.js"></script>
- </body>
- <script>
- clearInput = () => {
- document.getElementById("inputBox").value = "";
- }
-
- focusInput = () => {
- document.getElementById("inputBox").focus();
- }
-
- finishInput = () => {
- document.getElementById("container").focus();
- };
-
- setCursor = (kind) => {
- document.getElementById("inputBox").style.cursor = kind;
- };
- hideInput = () => {
- document.getElementById('inputBox').style.display = 'none';
- };
- showInput = () => {
- document.getElementById('inputBox').style.display = 'block';
- };
- </script>
- </html>
|