Focus editor on "Write" tab click (#26714)

Focus the editor when clicking the "Write" tab. Works for both Textarea
and EasyMDE. Does for some reason not work without the
`requestAnimationFrame`.
This commit is contained in:
silverwind 2023-08-25 07:26:32 +02:00 committed by GitHub
parent 390ec619f3
commit 636b6eaf2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -135,6 +135,12 @@ class ComboMarkdownEditor {
$panelPreviewer.attr('data-tab', `markdown-previewer-${elementIdCounter}`);
elementIdCounter++;
$tabEditor[0].addEventListener('click', () => {
requestAnimationFrame(() => {
this.focus();
});
});
$tabs.tab();
this.previewUrl = $tabPreviewer.attr('data-preview-url');