Merge pull request #1927 from ONLYOFFICE/fix/right-panel

Don't close right pane when editor is temporarily disconnected
This commit is contained in:
Julia Radzhabova 2022-08-31 19:38:59 +03:00 committed by GitHub
commit e0a12021ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -778,7 +778,7 @@ define([
allowMerge: false,
allowSignature: false,
allowProtect: false,
rightMenu: {clear: true, disable: true},
rightMenu: {clear: !temp, disable: true},
statusBar: true,
leftMenu: {disable: true, previewMode: true},
fileMenu: {protect: true, history: temp},

View file

@ -1050,7 +1050,7 @@ define([
Common.NotificationCenter.trigger('editing:disable', disable, {
viewMode: disable,
allowSignature: false,
rightMenu: {clear: true, disable: true},
rightMenu: {clear: !temp, disable: true},
statusBar: true,
leftMenu: {disable: true, previewMode: true},
fileMenu: {protect: true, history: temp},

View file

@ -1140,7 +1140,7 @@ define([
viewMode: disable,
allowSignature: false,
allowProtect: false,
rightMenu: {clear: true, disable: true},
rightMenu: {clear: !temp, disable: true},
statusBar: true,
leftMenu: {disable: true, previewMode: true},
fileMenu: {protect: true, history: temp},