diff options
Diffstat (limited to 'views')
-rw-r--r-- | views/load.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/views/load.html b/views/load.html index b4fe8c2..d19b8b7 100644 --- a/views/load.html +++ b/views/load.html @@ -22,6 +22,14 @@ } </style> + <script> + document.addEventListener('keydown', function(e) { + if (e.key === "F1" || e.key === "F10" || e.key === "F11") { // F11/F1/F10 + e.preventDefault(); + return false; + } + }) + </script> </head> <body style="overflow:hidden;margin:0;padding:0;background-color:#4b4e50;"> <img src="splash.png" style="width:100%;"> |