Improve readability

This commit is contained in:
syuilo 2017-02-18 13:26:27 +09:00
parent fde6ed6073
commit cedeba580e
1 changed files with 3 additions and 1 deletions

View File

@ -11,10 +11,12 @@ module.exports = me => {
openPostForm: opts => { openPostForm: opts => {
const app = document.getElementById('app'); const app = document.getElementById('app');
app.style.display = 'none'; app.style.display = 'none';
const form = riot.mount(document.body.appendChild(document.createElement('mk-post-form')), opts)[0];
function recover() { function recover() {
app.style.display = 'block'; app.style.display = 'block';
} }
const form = riot.mount(document.body.appendChild(document.createElement('mk-post-form')), opts)[0];
form form
.on('cancel', recover) .on('cancel', recover)
.on('post', recover); .on('post', recover);