Merge pull request #959 from m-voloshin/keyboard-shortcuts-help
Removed duplicates from keyboard shortcuts
This commit is contained in:
commit
fe7911b944
|
@ -31,6 +31,7 @@
|
|||
"focusRemote": "Focus on one of the remote videos.",
|
||||
"toggleChat": "Open or close the chat panel.",
|
||||
"mute": "Mute or unmute the microphone.",
|
||||
"fullScreen": "Enter or exit full screen mode.",
|
||||
"videoMute": "Stop or start the local video."
|
||||
},
|
||||
"welcomepage":{
|
||||
|
|
|
@ -283,13 +283,13 @@ const defaultToolbarButtons = {
|
|||
id: 'toolbar_button_fullScreen',
|
||||
tooltipKey: 'toolbar.fullscreen',
|
||||
className: "button icon-full-screen",
|
||||
shortcut: 'F',
|
||||
shortcut: 'S',
|
||||
shortcutAttr: 'toggleFullscreenPopover',
|
||||
shortcutFunc: function() {
|
||||
JitsiMeetJS.analytics.sendEvent('shortcut.fullscreen.toggled');
|
||||
APP.UI.toggleFullScreen();
|
||||
},
|
||||
shortcutDescription: "keyboardShortcuts.toggleChat",
|
||||
shortcutDescription: "keyboardShortcuts.fullScreen",
|
||||
content: "Enter / Exit Full Screen",
|
||||
i18n: "[content]toolbar.fullscreen"
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue