rudeshark.net/src/web/app/auth/script.js

20 lines
337 B
JavaScript
Raw Normal View History

2016-12-28 23:49:51 +01:00
/**
* Authorize Form
*/
const riot = require('riot');
document.title = 'Misskey | アプリの連携';
require('./tags.ls');
const boot = require('../boot.ls');
/**
* Boot
*/
boot(me => {
mount(document.createElement('mk-index'));
});
function mount(content) {
riot.mount(document.getElementById('app').appendChild(content));
}