diff options
| author | bobzel <zzzman@gmail.com> | 2022-07-05 10:15:54 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2022-07-05 10:15:54 -0400 |
| commit | c1cd00c7664df694b867f4989a1f61d959390742 (patch) | |
| tree | 29cfd0a7f9ed26ce2fd2eaf90549232e6c999c9d /src/client/views/Main.tsx | |
| parent | 2917042be6dc9d05a1a6a8d9dd01d19f915f1b68 (diff) | |
| parent | 3419d46a569da7ae8899588251426b82996ca523 (diff) | |
Merge branch 'master' into parker
Diffstat (limited to 'src/client/views/Main.tsx')
| -rw-r--r-- | src/client/views/Main.tsx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/client/views/Main.tsx b/src/client/views/Main.tsx index 17841c055..31fa5b157 100644 --- a/src/client/views/Main.tsx +++ b/src/client/views/Main.tsx @@ -8,7 +8,8 @@ import { AssignAllExtensions } from "../../extensions/General/Extensions"; import { Docs } from "../documents/Documents"; import { CurrentUserUtils } from "../util/CurrentUserUtils"; import { LinkManager } from "../util/LinkManager"; -import { RecordingApi } from "../util/RecordingApi"; +import { ReplayMovements } from '../util/ReplayMovements'; +import { TrackMovements } from "../util/TrackMovements"; import { CollectionView } from "./collections/CollectionView"; import { MainView } from "./MainView"; @@ -37,6 +38,8 @@ AssignAllExtensions(); d.setTime(d.getTime() + (100 * 24 * 60 * 60 * 1000)); const expires = "expires=" + d.toUTCString(); document.cookie = `loadtime=${loading};${expires};path=/`; - new RecordingApi; + new LinkManager(); + new TrackMovements(); + new ReplayMovements(); ReactDOM.render(<MainView />, document.getElementById('root')); })();
\ No newline at end of file |
