summaryrefslogtreecommitdiff
path: root/src/web/app/auth/script.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-02-25 00:18:09 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-02-25 00:18:09 +0900
commit36c11e1f0f24f5fc451ad1a38fd054c2cfa4d508 (patch)
tree3098f2e9bb3ca0c256a8a8c783ebd4efcacb5d55 /src/web/app/auth/script.ts
parentFix #1129 (diff)
downloadsharkey-36c11e1f0f24f5fc451ad1a38fd054c2cfa4d508.tar.gz
sharkey-36c11e1f0f24f5fc451ad1a38fd054c2cfa4d508.tar.bz2
sharkey-36c11e1f0f24f5fc451ad1a38fd054c2cfa4d508.zip
Refactor
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));
-}