Merge branch 'hotfix/3.5.19'

This commit is contained in:
Baptiste Grob
2021-01-27 11:26:00 +01:00
3 changed files with 3 additions and 2 deletions

View File

@@ -221,6 +221,7 @@
ng-model-options='{ debounce: self.state.editorDebounce}', ng-model-options='{ debounce: self.state.editorDebounce}',
ng-readonly='self.noteLocked', ng-readonly='self.noteLocked',
ng-trim='false' ng-trim='false'
autocomplete='off'
) )
| {{self.onSystemEditorLoad()}} | {{self.onSystemEditorLoad()}}
panel-resizer( panel-resizer(

View File

@@ -1198,7 +1198,7 @@ class EditorViewCtrl extends PureViewCtrl<{}, EditorState> {
element: editor, element: editor,
key: KeyboardKey.Tab, key: KeyboardKey.Tab,
onKeyDown: (event) => { onKeyDown: (event) => {
if (this.note.locked || event.shiftKey) { if (document.hidden || this.note.locked || event.shiftKey) {
return; return;
} }
event.preventDefault(); event.preventDefault();

View File

@@ -1,6 +1,6 @@
{ {
"name": "standard-notes-web", "name": "standard-notes-web",
"version": "3.5.17", "version": "3.5.19",
"license": "AGPL-3.0-or-later", "license": "AGPL-3.0-or-later",
"repository": { "repository": {
"type": "git", "type": "git",