diff --git a/public/pages/privacy.html b/public/pages/privacy.html new file mode 100644 index 0000000..d658b86 --- /dev/null +++ b/public/pages/privacy.html @@ -0,0 +1,77 @@ + + + Deep Diagram Privacy Policy + + + + + + + + + + + + + +
+

Our Privacy Policy

+

+ We believe that users of a system have the right to maintain thier own data + and must explicitly grant the right of others to use that data. +

+

+ To that end, we will never knowingly share data without asking explicit permission + and will safeguard your information to the best of our ability. That having been said, + we want you to be aware of a few things: +

+

+
+ + + diff --git a/public/styles.css b/public/styles.css index 9c28662..c67a8ff 100644 --- a/public/styles.css +++ b/public/styles.css @@ -3,6 +3,8 @@ body { height: 100vh; margin: 0px; padding: 0px; + background-color: #000; + background-image: url("/assets/grid3.jpg"); aspect-ratio: auto; font-family: Roboto, sans-serif; font-size: large; @@ -24,7 +26,6 @@ body { background: transparent; } - div.overlay { position: absolute; background: #000; @@ -193,6 +194,7 @@ h1 { } #loadingGrid { + position: relative; z-index: -1; width: 100%; height: 100%; diff --git a/src/integration/pouchdbPersistenceManager.ts b/src/integration/pouchdbPersistenceManager.ts index c123f8d..200040e 100644 --- a/src/integration/pouchdbPersistenceManager.ts +++ b/src/integration/pouchdbPersistenceManager.ts @@ -190,7 +190,7 @@ export class PouchdbPersistenceManager { "type": "user" } ); - if (newdb.status == 200) { + if (newdb.status == 201) { logger.info('sync target created'); } else { return; diff --git a/src/tutorial/introduction.ts b/src/tutorial/introduction.ts index e06cc25..95f88b8 100644 --- a/src/tutorial/introduction.ts +++ b/src/tutorial/introduction.ts @@ -12,7 +12,6 @@ import { import {DefaultScene} from "../defaultScene"; import {HtmlButton} from "../../../babylon-html"; import Hls from "hls.js"; -import {Spinner} from "../objects/spinner"; type Step = { name: string; @@ -54,10 +53,8 @@ const logger = log.getLogger('Introduction'); export class Introduction { private readonly _scene: Scene; private videoElement: HTMLVideoElement; - private spinner: Spinner; + constructor() { - this.spinner = new Spinner(); - this.spinner.show(); logger.info('Introduction constructor'); this._scene = DefaultScene.Scene; this.initialize();