mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-18 11:08:26 +00:00
21 lines
478 B
HTML
21 lines
478 B
HTML
|
<!-- Any copyright is dedicated to the Public Domain.
|
||
|
- http://creativecommons.org/publicdomain/zero/1.0/ -->
|
||
|
<!DOCTYPE HTML>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>frame</title>
|
||
|
<script type="text/javascript">
|
||
|
var connectedEvents = 0;
|
||
|
var buttonPresses = 0;
|
||
|
window.addEventListener("gamepadconnected", function() {
|
||
|
connectedEvents++;
|
||
|
});
|
||
|
window.addEventListener("gamepadbuttondown", function() {
|
||
|
buttonPresses++;
|
||
|
});
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
</body>
|
||
|
</html>
|