summaryrefslogtreecommitdiff
path: root/src/web/app/stats/script.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/app/stats/script.js')
-rw-r--r--src/web/app/stats/script.js23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/web/app/stats/script.js b/src/web/app/stats/script.js
deleted file mode 100644
index 75063501bb..0000000000
--- a/src/web/app/stats/script.js
+++ /dev/null
@@ -1,23 +0,0 @@
-/**
- * Stats
- */
-
-// Style
-import './style.styl';
-
-import * as riot from 'riot';
-require('./tags');
-import init from '../init';
-
-document.title = 'Misskey Statistics';
-
-/**
- * init
- */
-init(me => {
- mount(document.createElement('mk-index'));
-});
-
-function mount(content) {
- riot.mount(document.getElementById('app').appendChild(content));
-}