diff options
author | Devine Lu Linvega <[email protected]> | 2018-10-04 11:49:29 +1200 |
---|---|---|
committer | Devine Lu Linvega <[email protected]> | 2018-10-04 11:49:29 +1200 |
commit | 20a2dc2817f34704776313a21ae48b0bb88ee04f (patch) | |
tree | c4ad844c2f1b87e81857b78104ecf7b726e80a08 /index.html | |
parent | 1af51d18b92ce35c766dcf383f0862db7c32bbe3 (diff) | |
download | Orca-20a2dc2817f34704776313a21ae48b0bb88ee04f.tar.gz Orca-20a2dc2817f34704776313a21ae48b0bb88ee04f.zip |
Cleanup
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -46,12 +46,12 @@ </head> <body> <script> - const pico = new Pico(); - pico.install(); - pico.start(); + const pico = new Pico() + pico.install() + pico.start() - const keyboard = new Keyboard(); - document.onkeydown = function(event){ keyboard.listen_onkeydown(event); }; + const keyboard = new Keyboard() + document.onkeydown = function(event){ keyboard.listen_onkeydown(event); } </script> </body> </html> |