mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-03-09 15:40:18 +00:00
First attempt at MSTSC.js support.
This commit is contained in:
parent
c7cb610f92
commit
b7f09f32f8
17 changed files with 28363 additions and 1235 deletions
20
public/mstsc/keymap.html
Normal file
20
public/mstsc/keymap.html
Normal file
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
|
||||
<script language="javascript">
|
||||
function install() {
|
||||
// bind keyboard event
|
||||
window.addEventListener('keydown', function (e) {
|
||||
document.getElementById('output').innerHTML += e.keyCode + ' : "' + e.code + '", <br>';
|
||||
e.preventDefault();
|
||||
return false;
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body onload='install()'>
|
||||
<p id='output'></p>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue