mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-24 10:27:10 +02:00
Apply linter config
This commit is contained in:
parent
d355169b60
commit
a8ae0f8078
@ -418,8 +418,8 @@ class Application extends BaseApplication {
|
||||
},
|
||||
});
|
||||
|
||||
/* We need a dummy entry, otherwise the ternary operator to show a
|
||||
* menu item only on a specific OS does not work. */
|
||||
// We need a dummy entry, otherwise the ternary operator to show a
|
||||
// menu item only on a specific OS does not work.
|
||||
const noItem = {
|
||||
type: 'separator',
|
||||
visible: false,
|
||||
@ -576,13 +576,13 @@ class Application extends BaseApplication {
|
||||
}
|
||||
|
||||
const rootMenuFile = {
|
||||
/* Using a dummy entry for macOS here, because first menu
|
||||
* becomes 'Joplin' and we need a nenu called 'File' later. */
|
||||
// Using a dummy entry for macOS here, because first menu
|
||||
// becomes 'Joplin' and we need a nenu called 'File' later.
|
||||
label: shim.isMac() ? '&JoplinMainMenu' : _('&File'),
|
||||
/* `&` before one of the char in the label name mean, that
|
||||
* <Alt + F> will open this menu. It's needed becase electron
|
||||
* opens the first menu on Alt press if no hotkey assigned.
|
||||
* Issue: https://github.com/laurent22/joplin/issues/934 */
|
||||
// `&` before one of the char in the label name mean, that
|
||||
// <Alt + F> will open this menu. It's needed becase electron
|
||||
// opens the first menu on Alt press if no hotkey assigned.
|
||||
// Issue: https://github.com/laurent22/joplin/issues/934
|
||||
submenu: [{
|
||||
label: _('About Joplin'),
|
||||
visible: shim.isMac() ? true : false,
|
||||
|
Loading…
Reference in New Issue
Block a user