summaryrefslogtreecommitdiff
path: root/src/web/app/auth/script.js
blob: 9743415b12a65da80256ec016a19f6ba0b82b529 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
 * 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));
}