require shift+ESC to toggle

This commit is contained in:
Lea Anthony
2019-11-07 17:04:21 +11:00
parent 241f10188b
commit 859d8e0ebb
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@@ -46,7 +46,7 @@
function logKey(e) {
var conin = document.getElementById('conin');
if (e.which == 27) {
if (e.which == 27 && e.shiftKey) {
toggleConsole(conin);
}
if (e.which == 13 && consoleVisible()) {