2020-06-27 11:24:49 +02:00
|
|
|
// Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
|
2020-11-05 02:01:30 +01:00
|
|
|
import { setupI18n } from "anki/i18n";
|
|
|
|
import GraphsPage from "./GraphsPage.svelte";
|
|
|
|
import { checkNightMode } from "anki/nightmode";
|
2020-06-27 11:24:49 +02:00
|
|
|
|
2020-08-27 13:46:34 +02:00
|
|
|
export function graphs(target: HTMLDivElement): void {
|
2020-06-27 11:24:49 +02:00
|
|
|
setupI18n().then((i18n) => {
|
|
|
|
new GraphsPage({
|
|
|
|
target,
|
2020-08-27 13:46:34 +02:00
|
|
|
props: { i18n, nightMode: checkNightMode() },
|
2020-06-27 11:24:49 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|