diff options
author | patrick kettner <[email protected]> | 2021-10-05 19:32:38 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2021-10-06 02:32:38 +0300 |
commit | 463237229dbb4f65d5c62ed471f7100f1de4b0ce (patch) | |
tree | 7fd50822644f9a3bb7bd24f8db87f976a14ff9e8 /web/index.html | |
parent | 756a6c6066f9fbc5817aad43f1552f0bc486a871 (diff) |
don't show message about keyboards not working when you are following its recomendations to fix it (#70)
Diffstat (limited to 'web/index.html')
-rw-r--r-- | web/index.html | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/web/index.html b/web/index.html index 2e4fce32..c0cf343f 100644 --- a/web/index.html +++ b/web/index.html @@ -73,15 +73,17 @@ <div id="apps-box"> <h4>Loading ...</h4> </div> - <hr> - <p class="text"> - Please note that when you are working with a KVM session or another application that captures the keyboard, - you can't use some keyboard shortcuts such as Ctrl+Alt+Del (which will be caught by your OS) or Ctrl+W (caught by your browser). - </p> - <p class="text">To override this limitation you can use <a target="_blank" href="https://google.com/chrome">Google Chrome</a> - or <a target="_blank" href="https://chromium.org/Home">Chromium</a> in application mode. - </p> - <div class="code" id="app-text"></div> + <div class="keyboard-warning"> + <hr> + <p class="text"> + Please note that when you are working with a KVM session or another application that captures the keyboard, + you can't use some keyboard shortcuts such as Ctrl+Alt+Del (which will be caught by your OS) or Ctrl+W (caught by your browser). + </p> + <p class="text">To override this limitation you can use <a target="_blank" href="https://google.com/chrome">Google Chrome</a> + or <a target="_blank" href="https://chromium.org/Home">Chromium</a> in application mode. + </p> + <div class="code" id="app-text"></div> + </div> <hr> <p class="text"> Full documentation, the source code, and the legal information @@ -90,4 +92,4 @@ </div> </div> </body> -</html>
\ No newline at end of file +</html> |