2016-12-28 16:49:51 -06:00
|
|
|
/**
|
|
|
|
* Authorize Form
|
|
|
|
*/
|
|
|
|
|
2017-02-18 21:31:23 -06:00
|
|
|
// Style
|
2017-02-19 00:36:53 -06:00
|
|
|
import './style.styl';
|
2017-02-18 21:31:23 -06:00
|
|
|
|
2017-03-18 06:05:11 -05:00
|
|
|
import * as riot from 'riot';
|
2017-02-02 14:22:12 -06:00
|
|
|
require('./tags');
|
2017-05-17 15:06:55 -05:00
|
|
|
import init from '../init';
|
2017-03-18 06:05:11 -05:00
|
|
|
|
|
|
|
document.title = 'Misskey | アプリの連携';
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
/**
|
2017-05-17 15:06:55 -05:00
|
|
|
* init
|
2016-12-28 16:49:51 -06:00
|
|
|
*/
|
2017-11-15 12:06:52 -06:00
|
|
|
init(() => {
|
2016-12-28 16:49:51 -06:00
|
|
|
mount(document.createElement('mk-index'));
|
|
|
|
});
|
|
|
|
|
|
|
|
function mount(content) {
|
|
|
|
riot.mount(document.getElementById('app').appendChild(content));
|
|
|
|
}
|