2016-12-28 16:49:51 -06:00
|
|
|
/**
|
|
|
|
* Authorize Form
|
|
|
|
*/
|
|
|
|
|
2017-02-18 21:31:23 -06:00
|
|
|
// Style
|
|
|
|
//import './style.styl';
|
|
|
|
require('./style.styl');
|
|
|
|
|
2016-12-28 16:49:51 -06:00
|
|
|
const riot = require('riot');
|
|
|
|
document.title = 'Misskey | アプリの連携';
|
2017-02-02 14:22:12 -06:00
|
|
|
require('./tags');
|
2016-12-31 05:26:22 -06:00
|
|
|
const boot = require('../boot.js');
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Boot
|
|
|
|
*/
|
|
|
|
boot(me => {
|
|
|
|
mount(document.createElement('mk-index'));
|
|
|
|
});
|
|
|
|
|
|
|
|
function mount(content) {
|
|
|
|
riot.mount(document.getElementById('app').appendChild(content));
|
|
|
|
}
|