Updates show/hide of shortcuts dialog.
Fixes not able to close it with esc button.
This commit is contained in:
parent
aaca510f8a
commit
215d8b1355
|
@ -1434,31 +1434,4 @@ UI.hideUserMediaPermissionsGuidanceOverlay = function () {
|
|||
GumPermissionsOverlay.hide();
|
||||
};
|
||||
|
||||
/**
|
||||
* Shows or hides the keyboard shortcuts panel, depending on the current state.'
|
||||
*/
|
||||
UI.toggleKeyboardShortcutsPanel = function() {
|
||||
if (!messageHandler.isDialogOpened()) {
|
||||
let msg = $('#keyboard-shortcuts').html();
|
||||
let buttons = { Close: true };
|
||||
|
||||
messageHandler.openDialog(
|
||||
'keyboardShortcuts.keyboardShortcuts', msg, true, buttons);
|
||||
} else {
|
||||
messageHandler.closeDialog();
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
* Shows or hides the keyboard shortcuts panel.'
|
||||
*/
|
||||
UI.showKeyboardShortcutsPanel = function(show) {
|
||||
if (show) {
|
||||
$('#keyboard-shortcuts').show();
|
||||
} else {
|
||||
$('#keyboard-shortcuts').hide();
|
||||
}
|
||||
};
|
||||
|
||||
module.exports = UI;
|
||||
|
|
|
@ -1,5 +1,10 @@
|
|||
/* global APP, $, JitsiMeetJS */
|
||||
|
||||
/**
|
||||
* The reference to the shortcut dialogs when opened.
|
||||
*/
|
||||
let keyboardShortcutDialog = null;
|
||||
|
||||
/**
|
||||
* Initialise global shortcuts.
|
||||
* Global shortcuts are shortcuts for features that don't have a button or
|
||||
|
@ -9,12 +14,12 @@
|
|||
function initGlobalShortcuts() {
|
||||
|
||||
KeyboardShortcut.registerShortcut("ESCAPE", null, function() {
|
||||
APP.UI.showKeyboardShortcutsPanel(false);
|
||||
showKeyboardShortcutsPanel(false);
|
||||
});
|
||||
|
||||
KeyboardShortcut.registerShortcut("?", null, function() {
|
||||
JitsiMeetJS.analytics.sendEvent("shortcut.shortcut.help");
|
||||
APP.UI.toggleKeyboardShortcutsPanel();
|
||||
showKeyboardShortcutsPanel(true);
|
||||
}, "keyboardShortcuts.toggleShortcuts");
|
||||
|
||||
// register SPACE shortcut in two steps to insure visibility of help message
|
||||
|
@ -32,6 +37,28 @@ function initGlobalShortcuts() {
|
|||
KeyboardShortcut._addShortcutToHelp("1-9", "keyboardShortcuts.focusRemote");
|
||||
}
|
||||
|
||||
/**
|
||||
* Shows or hides the keyboard shortcuts dialog.
|
||||
* @param {boolean} show whether to show or hide the dialog
|
||||
*/
|
||||
function showKeyboardShortcutsPanel(show) {
|
||||
if (show
|
||||
&& !APP.UI.messageHandler.isDialogOpened()
|
||||
&& keyboardShortcutDialog === null) {
|
||||
|
||||
let msg = $('#keyboard-shortcuts').html();
|
||||
let buttons = { Close: true };
|
||||
|
||||
keyboardShortcutDialog = APP.UI.messageHandler.openDialog(
|
||||
'keyboardShortcuts.keyboardShortcuts', msg, true, buttons);
|
||||
} else {
|
||||
if (keyboardShortcutDialog !== null) {
|
||||
keyboardShortcutDialog.close();
|
||||
keyboardShortcutDialog = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Map of shortcuts. When a shortcut is registered it enters the mapping.
|
||||
* @type {{}}
|
||||
|
|
Loading…
Reference in New Issue