From: Hypolite Petovan Date: Sun, 1 Oct 2023 21:18:07 +0000 (-0400) Subject: Allow macOS users to use Ctrl + Cmd + Space to bring up the emoji picker in Friendica... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=cb7b92282c37fb05b9c0a6d66e2b28f6b0385be1;p=friendica.git Allow macOS users to use Ctrl + Cmd + Space to bring up the emoji picker in Friendica text fields - Remove Backspace guard against changing page - Clarify keyboard shortcut to pause automatic updates --- diff --git a/view/js/main.js b/view/js/main.js index 6a7874a1e2..c55f85d917 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -378,16 +378,10 @@ $(function() { // Allow folks to stop the ajax page updates with the pause/break key $(document).keydown(function(event) { - if (event.keyCode == '8') { - var target = event.target || event.srcElement; - if (!/input|textarea/i.test(target.nodeName)) { - return false; - } - } - - if (event.keyCode == '19' || (event.ctrlKey && event.which == '32')) { + // Pause/Break or Ctrl + Space + if (event.which === 19 || (!event.shiftKey && !event.altKey && event.ctrlKey && event.which === 32)) { event.preventDefault(); - if (stopped == false) { + if (stopped === false) { stopped = true; if (event.ctrlKey) { totStopped = true;