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
This commit is contained in:
Hypolite Petovan 2023-10-01 17:18:07 -04:00 committed by Jakobus Schürz
parent cf5beafec0
commit cb7b92282c
1 changed files with 3 additions and 9 deletions

View File

@ -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;