Compare commits
No commits in common. "master" and "v1.1" have entirely different histories.
@ -190,9 +190,10 @@ Public Class main
|
||||
End Try
|
||||
|
||||
Case "text"
|
||||
Dim text As String = req.QueryString("text")
|
||||
Dim encodedtext As String = req.QueryString("text")
|
||||
Dim decodedtext As String = Uri.UnescapeDataString(encodedtext)
|
||||
Try
|
||||
SendKeysEscaped(text)
|
||||
SendKeysEscaped(decodedtext)
|
||||
Catch ex As Exception
|
||||
log(ex.ToString)
|
||||
End Try
|
||||
|
@ -51,6 +51,7 @@ input{
|
||||
</head>
|
||||
<body>
|
||||
<div style="flex:2">
|
||||
<button style="flex:1">menu</button>
|
||||
<button onclick="fetch('/key?code=46')" style="flex:1">del</button>
|
||||
<button onclick="fetch('/key?code=8')" style="flex:1">bksp</button>
|
||||
<button onclick="fetch('/key?code=13')" style="flex:1">enter</button>
|
||||
|
Loading…
x
Reference in New Issue
Block a user