diff --git a/doc/Doxyfile b/doc/Doxyfile
index cabffd87..e5a8d724 100644
--- a/doc/Doxyfile
+++ b/doc/Doxyfile
@@ -278,7 +278,7 @@ ALIASES = "accessors=\par Access functions:^^" \
"states=\par States:^^" \
"skinlet=\par Default Skinlet:^^" \
"aspect=\par Aspect^^" \
- "embedWasm=
Run the code!"
+ "embedWasm="
diff --git a/doc/api/header.html b/doc/api/header.html
index 3f9027c6..8920328f 100644
--- a/doc/api/header.html
+++ b/doc/api/header.html
@@ -36,33 +36,36 @@
}
try {
- showUi(spinner);
- status.innerHTML = 'Loading...';
+ if(spinner)
+ {
+ showUi(spinner);
+ status.innerHTML = 'Loading...';
- const instance = await qtLoad({
- qt: {
- onLoaded: () => showUi(screen),
- onExit: exitData =>
- {
- status.innerHTML = 'Application exit';
- status.innerHTML +=
- exitData.code !== undefined ? ` with code ` : '';
- status.innerHTML +=
- exitData.text !== undefined ? ` ()` : '';
- showUi(spinner);
- },
- entryFunction: window.createQtAppInstance,
- containerElements: [screen],
+ const instance = await qtLoad({
+ qt: {
+ onLoaded: () => showUi(screen),
+ onExit: exitData =>
+ {
+ status.innerHTML = 'Application exit';
+ status.innerHTML +=
+ exitData.code !== undefined ? ` with code ` : '';
+ status.innerHTML +=
+ exitData.text !== undefined ? ` ()` : '';
+ showUi(spinner);
+ },
+ entryFunction: window.createQtAppInstance,
+ containerElements: [screen],
- }
- });
+ }
+ });
+ }
} catch (e) {
console.error(e);
console.error(e.stack);
}
}
-
+
$treeview
@@ -72,7 +75,7 @@ $darkmode
$extrastylesheet
-
+