mirror of
https://github.com/friendica/friendica
synced 2024-11-10 05:02:58 +00:00
Merge pull request #13485 from MrPetovan/bug/macos-keyboard-shortcuts
Allow macOS users to use Ctrl + Cmd + Space to bring up the emoji picker in Friendica text fields
This commit is contained in:
commit
22e960d8f8
1 changed files with 3 additions and 9 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue