1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-27 06:01:54 +03:00

Added auto-focus behaviour to page editor

- Will focus on title if the value of the field matches the default text
for the current user's language.
- Otherwise will focus on the editor body.
- Added and tested on both editors.

For #2036
This commit is contained in:
Dan Brown
2020-04-27 15:54:39 +01:00
parent 8ce38d2158
commit 4ef362143b
4 changed files with 32 additions and 6 deletions

View File

@ -557,6 +557,11 @@ class MarkdownEditor {
const prependLineCount = markdown.split('\n').length;
this.cm.setCursor(cursorPos.line + prependLineCount, cursorPos.ch);
});
// Focus on editor
window.$events.listen('editor::focus', () => {
this.cm.focus();
});
}
}