small tweaks

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
pull/13095/head
Michael Telatynski 2020-04-08 21:49:27 +01:00
parent cc939f9645
commit 343d4ea641
1 changed files with 2 additions and 6 deletions

View File

@ -191,17 +191,13 @@ async function start() {
// run on the components. // run on the components.
await loadApp(fragparts.params); await loadApp(fragparts.params);
} catch (err) { } catch (err) {
console.trace(err); console.error(err);
const { showError } = await import(
/* webpackChunkName: "init" */
/* webpackPreload: true */
"./init");
await showError(err); await showError(err);
} }
} }
start().catch(err => { start().catch(err => {
console.error(err); console.error(err);
if (!acceptBrowser) { if (!acceptBrowser) {
alert("Incompatible browser"); // TODO redirect to static incompatible browser page
} }
}); });