diff options
| author | Naafiyan Ahmed <naafiyan@gmail.com> | 2022-07-12 12:07:38 -0400 |
|---|---|---|
| committer | Naafiyan Ahmed <naafiyan@gmail.com> | 2022-07-12 12:07:38 -0400 |
| commit | 31041d7a5b2c3699518ebb33ccab016af0acd579 (patch) | |
| tree | 8d8651ef3bcf9e6fee0c55c598ec5c356dbcc05f /src/client/views/Main.tsx | |
| parent | 39cf91aadee5f448e1a7a0a07da9e769d6e242fa (diff) | |
| parent | 0906eab4135db844dc45a20d33f84e7439461c9b (diff) | |
merged master
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 |
