summaryrefslogtreecommitdiff
path: root/src/web/app/auth/script.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/app/auth/script.ts')
-rw-r--r--src/web/app/auth/script.ts23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/web/app/auth/script.ts b/src/web/app/auth/script.ts
deleted file mode 100644
index dd598d1ed6..0000000000
--- a/src/web/app/auth/script.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-/**
- * Authorize Form
- */
-
-// Style
-import './style.styl';
-
-import * as riot from 'riot';
-require('./tags');
-import init from '../init';
-
-document.title = 'Misskey | アプリの連携';
-
-/**
- * init
- */
-init(() => {
- mount(document.createElement('mk-index'));
-});
-
-function mount(content) {
- riot.mount(document.getElementById('app').appendChild(content));
-}