1
0
Fork 0
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:
Ylian Saint-Hilaire 2020-06-09 18:17:15 -07:00
parent c7cb610f92
commit b7f09f32f8
17 changed files with 28363 additions and 1235 deletions

20
public/mstsc/keymap.html Normal file
View 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>