diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-02-25 00:18:09 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-02-25 00:18:09 +0900 |
| commit | 36c11e1f0f24f5fc451ad1a38fd054c2cfa4d508 (patch) | |
| tree | 3098f2e9bb3ca0c256a8a8c783ebd4efcacb5d55 /src/web/app/auth | |
| parent | Fix #1129 (diff) | |
| download | sharkey-36c11e1f0f24f5fc451ad1a38fd054c2cfa4d508.tar.gz sharkey-36c11e1f0f24f5fc451ad1a38fd054c2cfa4d508.tar.bz2 sharkey-36c11e1f0f24f5fc451ad1a38fd054c2cfa4d508.zip | |
Refactor
Diffstat (limited to 'src/web/app/auth')
| -rw-r--r-- | src/web/app/auth/script.ts | 23 |
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)); -} |