diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-05-18 05:06:55 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-05-18 05:06:55 +0900 |
| commit | c72a07187a6cebeb343fa52201577478cd2c6a6a (patch) | |
| tree | e6d50b8a986a655f16ecac43e802be4a1cbd9e59 /src/web/app/auth | |
| parent | Merge branch 'master' of https://github.com/syuilo/misskey (diff) | |
| download | sharkey-c72a07187a6cebeb343fa52201577478cd2c6a6a.tar.gz sharkey-c72a07187a6cebeb343fa52201577478cd2c6a6a.tar.bz2 sharkey-c72a07187a6cebeb343fa52201577478cd2c6a6a.zip | |
なんかもうめっちゃ変えた
Diffstat (limited to 'src/web/app/auth')
| -rw-r--r-- | src/web/app/auth/script.js | 6 | ||||
| -rw-r--r-- | src/web/app/auth/view.pug | 5 |
2 files changed, 3 insertions, 8 deletions
diff --git a/src/web/app/auth/script.js b/src/web/app/auth/script.js index 19391b2b9e..fe7f9befe8 100644 --- a/src/web/app/auth/script.js +++ b/src/web/app/auth/script.js @@ -7,14 +7,14 @@ import './style.styl'; import * as riot from 'riot'; require('./tags'); -import boot from '../boot'; +import init from '../init'; document.title = 'Misskey | アプリの連携'; /** - * Boot + * init */ -boot(me => { +init(me => { mount(document.createElement('mk-index')); }); diff --git a/src/web/app/auth/view.pug b/src/web/app/auth/view.pug deleted file mode 100644 index afa1e408f8..0000000000 --- a/src/web/app/auth/view.pug +++ /dev/null @@ -1,5 +0,0 @@ -extends ../base - -block head - meta(name='viewport' content='width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no') - script(src=`/assets/auth.${version}.ja.js` async defer) |