mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-05-31 13:05:47 +08: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:
@ -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();
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -402,6 +402,10 @@ function listenForBookStackEditorEvents(editor) {
|
||||
editor.setContent(content);
|
||||
});
|
||||
|
||||
// Focus on the editor
|
||||
window.$events.listen('editor::focus', () => {
|
||||
editor.focus();
|
||||
});
|
||||
}
|
||||
|
||||
class WysiwygEditor {
|
||||
|
Reference in New Issue
Block a user