mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-10-09 15:15:58 +08:00
47 lines
No EOL
1.7 KiB
JavaScript
47 lines
No EOL
1.7 KiB
JavaScript
//this file should be concatenated at the top of the legacy js files
|
|
|
|
import Chart from "chart.js";
|
|
import chartTrendline from "chartjs-plugin-trendline";
|
|
import chartAnnotation from "chartjs-plugin-annotation";
|
|
|
|
Chart.plugins.register(chartTrendline);
|
|
Chart.plugins.register(chartAnnotation);
|
|
|
|
import * as DB from "./db";
|
|
|
|
import {
|
|
showBackgroundLoader,
|
|
hideBackgroundLoader,
|
|
swapElements,
|
|
updateTestModesNotice,
|
|
focusWords,
|
|
updateKeytips,
|
|
} from "./dom-util";
|
|
import * as Misc from "./misc";
|
|
import * as CloudFunctions from "./cloud-functions";
|
|
import layouts from "./layouts";
|
|
import * as Monkey from "./monkey";
|
|
import * as Notifications from "./notification-center";
|
|
import * as ResultFilters from "./result-filters";
|
|
import * as Leaderboards from "./leaderboards";
|
|
import * as Sound from "./sound";
|
|
import * as CustomText from "./custom-text";
|
|
import * as ShiftTracker from "./shift-tracker";
|
|
import * as TestStats from "./test-stats";
|
|
import * as ThemeColors from "./theme-colors";
|
|
import * as OutOfFocus from "./out-of-focus";
|
|
import * as ChartController from "./chart-controller";
|
|
import * as ThemeController from "./theme-controller";
|
|
import * as Caret from "./caret";
|
|
import * as CustomTextPopup from "./custom-text-popup";
|
|
import * as ManualRestart from "./manual-restart-tracker";
|
|
import Config from "./config";
|
|
import * as ConfigSet from "./config-set";
|
|
import * as Focus from "./focus";
|
|
import * as AccountIcon from "./account-icon";
|
|
import * as PractiseMissed from "./practise-missed";
|
|
import * as TestUI from "./test-ui";
|
|
import * as Keymap from "./keymap";
|
|
import * as LiveWpm from "./live-wpm";
|
|
import * as CapsWarning from "./caps-warning";
|
|
import * as LiveAcc from './live-acc'; |