tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

gamepad_frame.html (566B)


      1 <!-- Any copyright is dedicated to the Public Domain.
      2   - http://creativecommons.org/publicdomain/zero/1.0/ -->
      3 <!DOCTYPE HTML>
      4 <html>
      5 <head>
      6  <title>frame</title>
      7  <script type="text/javascript">
      8    var connectedEvents = 0;
      9    var buttonPresses = 0;
     10    var idlConnected = 0;
     11    window.addEventListener("gamepadconnected", function() {
     12      connectedEvents++;
     13    });
     14    window.addEventListener("gamepadbuttondown", function() {
     15      buttonPresses++;
     16    });
     17    window.ongamepadconnected = () => ++idlConnected;
     18  </script>
     19 </head>
     20 <body>
     21 </body>
     22 </html>