First attempt at MSTSC.js support.

This commit is contained in:
Ylian Saint-Hilaire
2020-06-09 18:17:15 -07:00
parent bdaa2f7013
commit e1cdf75dbb
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>