Merge pull request #1838 from ONLYOFFICE/fix/bug-57826

Fix  Bug 57826
This commit is contained in:
Julia Radzhabova 2022-06-30 22:57:37 +03:00 committed by GitHub
commit f56de4ea12
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 16 additions and 0 deletions

View file

@ -126,6 +126,8 @@ require([
'gateway',
'locale'
], function (Backbone, Bootstrap, Core) {
if (Backbone.History && Backbone.History.started)
return;
Backbone.history.start();
/**

View file

@ -116,6 +116,8 @@ require([
'sockjs',
'underscore'
], function (Backbone, Bootstrap, Core) {
if (Backbone.History && Backbone.History.started)
return;
Backbone.history.start();
/**

View file

@ -133,6 +133,8 @@ require([
'gateway',
'locale'
], function (Backbone, Bootstrap, Core) {
if (Backbone.History && Backbone.History.started)
return;
Backbone.history.start();
/**

View file

@ -123,6 +123,8 @@ require([
'sockjs',
'underscore'
], function (Backbone, Bootstrap, Core) {
if (Backbone.History && Backbone.History.started)
return;
Backbone.history.start();
/**

View file

@ -132,6 +132,8 @@ require([
'gateway',
'locale'
], function (Backbone, Bootstrap, Core) {
if (Backbone.History && Backbone.History.started)
return;
Backbone.history.start();
/**

View file

@ -123,6 +123,8 @@ require([
'xregexp',
'underscore'
], function (Backbone, Bootstrap, Core) {
if (Backbone.History && Backbone.History.started)
return;
Backbone.history.start();
/**

View file

@ -132,6 +132,8 @@ require([
'gateway',
'locale'
], function (Backbone, Bootstrap, Core) {
if (Backbone.History && Backbone.History.started)
return;
Backbone.history.start();
/**

View file

@ -122,6 +122,8 @@ require([
'sockjs',
'underscore'
], function (Backbone, Bootstrap, Core) {
if (Backbone.History && Backbone.History.started)
return;
Backbone.history.start();
/**