mirror of
https://github.com/element-hq/element-web
synced 2024-11-25 10:45:51 +03:00
This doesn't actually need to be global
(because the rendering isn't in a render method here)
This commit is contained in:
parent
3040d0a474
commit
24602119c5
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,6 @@ var validBrowser = checkBrowserFeatures([
|
||||||
"displaytable", "flexbox", "es5object", "es5function", "localstorage",
|
"displaytable", "flexbox", "es5object", "es5function", "localstorage",
|
||||||
"objectfit"
|
"objectfit"
|
||||||
]);
|
]);
|
||||||
var configError;
|
|
||||||
|
|
||||||
// We want to support some name / value pairs in the fragment
|
// We want to support some name / value pairs in the fragment
|
||||||
// so we're re-using query string like format
|
// so we're re-using query string like format
|
||||||
|
@ -218,6 +217,7 @@ async function loadApp() {
|
||||||
}
|
}
|
||||||
|
|
||||||
let configJson;
|
let configJson;
|
||||||
|
let configError;
|
||||||
try {
|
try {
|
||||||
configJson = await getConfig();
|
configJson = await getConfig();
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
|
Loading…
Reference in a new issue