Fullscreen shortcut is F11 except for macs, fixes #1911
This commit is contained in:
parent
ea4f3a831e
commit
6f9ff489d8
1 changed files with 5 additions and 1 deletions
|
@ -154,7 +154,11 @@ pandora.ui.mainMenu = function() {
|
|||
{
|
||||
id: 'togglefullscreen',
|
||||
title: Ox._((fullscreenState ? 'Exit' : 'Enter') + ' Fullscreen'),
|
||||
disabled: fullscreenState === void 0, keyboard: 'shift alt control f'
|
||||
disabled: fullscreenState === void 0,
|
||||
keyboard: /^Mac/.test(window.navigator.platform)
|
||||
? 'shift alt control f'
|
||||
: 'F11'
|
||||
|
||||
},
|
||||
{
|
||||
id: 'entervideofullscreen',
|
||||
|
|
Loading…
Reference in a new issue