paricafe/src/web/app/auth/script.js

20 lines
343 B
JavaScript
Raw Normal View History

2016-12-28 16:49:51 -06:00
/**
* Authorize Form
*/
const riot = require('riot');
document.title = 'Misskey | アプリの連携';
2017-02-02 03:11:58 -06:00
require('./tags/index.ls');
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));
}