diff --git a/src/js/script.js b/src/js/script.js index 4a9daf1cc..9237f61c7 100644 --- a/src/js/script.js +++ b/src/js/script.js @@ -4649,6 +4649,8 @@ function handleBackspace(event) { if (addspace) { currentInput += " "; } + } else if(event.metaKey){ + currentInput = ""; } else { currentInput = currentInput.substring(0, currentInput.length - 1); }