blob: 3db602e0b838e22bc9a50bb2627e6ff36d31c984 (
plain)
| ofs | hex dump | ascii |
|---|
| 0000 | 21 3c 61 72 63 68 3e 0a 2f 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 31 34 38 35 32 37 33 36 | !<arch>./...............14852736 |
| 0020 | 31 38 20 20 20 20 20 20 20 20 20 20 20 20 20 20 30 20 20 20 20 20 20 20 34 33 31 34 34 20 20 20 | 18..............0.......43144... |
| 0040 | 20 20 60 0a 00 00 01 91 00 01 4e f2 00 01 4e f2 00 01 4e f2 00 01 4e f2 00 01 4e f2 00 01 4e f2 | ..`.......N...N...N...N...N...N. |
| 0060 | 00 01 4e f2 00 01 4e f2 00 01 4e f2 00 01 4e f2 00 01 4e f2 00 01 4e f2 00 01 4e f2 00 01 4e f2 | ..N...N...N...N...N...N...N...N. |
| 0080 | 00 01 4e f2 00 01 4e f2 00 01 4e f2 00 01 4e f2 00 01 4e(async function () {
await CefSharp.BindObjectAsync("keyboard", "bound");
var inputs = document.getElementsByTagName('input');
var i = 0;
do {
var type = inputs[i].type;
if (type == 'text' || type == 'email' || type == 'password' || type == 'search' || type == 'date' || type == 'url' || type == 'time' || type == 'tel' || type == 'number') {
inputs[i].onfocus = function () {
keyboard.openKeyboard(type);
}
inputs[i].onblur = function () {
keyboard.closeKeyboard();
}
}
}
while (inputs[++i])
})();
|