[SSE PE] changed order of skd loading

This commit is contained in:
Maxim Kadushkin 2022-12-19 23:19:59 +03:00
parent d823738849
commit bf6e0377a3
3 changed files with 4 additions and 7 deletions

View file

@ -103,7 +103,6 @@ require.config({
sdk: {
deps: [
'jquery',
'underscore',
'allfonts',
'xregexp',
'socketio'
@ -123,14 +122,14 @@ require.config({
});
require([
'sdk',
'backbone',
'bootstrap',
'core',
'sdk',
'analytics',
'gateway',
'locale'
], function (Backbone, Bootstrap, Core) {
], function (Sdk, Backbone, Bootstrap, Core) {
if (Backbone.History && Backbone.History.started)
return;
Backbone.history.start();

View file

@ -59,7 +59,6 @@ require.config({
sdk: {
deps: [
'jquery',
'underscore',
'allfonts',
'xregexp',
'socketio'

View file

@ -103,7 +103,6 @@ require.config({
sdk: {
deps: [
'jquery',
'underscore',
'allfonts',
'xregexp',
'socketio'
@ -123,14 +122,14 @@ require.config({
});
require([
'sdk',
'backbone',
'bootstrap',
'core',
'sdk',
'analytics',
'gateway',
'locale'
], function (Backbone, Bootstrap, Core) {
], function (Sdk, Backbone, Bootstrap, Core) {
if (Backbone.History && Backbone.History.started)
return;
Backbone.history.start();