[DE] Fix loading translations on IE and minimized version
This commit is contained in:
parent
cca8f2aa12
commit
6061d0f2d1
|
@ -169,8 +169,8 @@ require([
|
|||
]
|
||||
});
|
||||
|
||||
Common.Locale.apply();
|
||||
|
||||
Common.Locale.apply(
|
||||
function() {
|
||||
require([
|
||||
'documenteditor/main/app/controller/Viewport',
|
||||
'documenteditor/main/app/controller/DocumentHolder',
|
||||
|
@ -207,6 +207,8 @@ require([
|
|||
], function() {
|
||||
app.start();
|
||||
});
|
||||
}
|
||||
);
|
||||
}, function(err) {
|
||||
if (err.requireType == 'timeout' && !reqerr && window.requireTimeourError) {
|
||||
reqerr = window.requireTimeourError();
|
||||
|
|
|
@ -159,8 +159,8 @@ require([
|
|||
]
|
||||
});
|
||||
|
||||
Common.Locale.apply();
|
||||
|
||||
Common.Locale.apply(
|
||||
function() {
|
||||
require([
|
||||
'documenteditor/main/app/controller/Viewport',
|
||||
'documenteditor/main/app/controller/DocumentHolder',
|
||||
|
@ -198,6 +198,8 @@ require([
|
|||
window.compareVersions = true;
|
||||
app.start();
|
||||
});
|
||||
}
|
||||
);
|
||||
}, function(err) {
|
||||
if (err.requireType == 'timeout' && !reqerr && window.requireTimeourError) {
|
||||
reqerr = window.requireTimeourError();
|
||||
|
|
Loading…
Reference in a new issue