missing semicolon

This commit is contained in:
tamaina 2018-08-18 21:58:00 +09:00 committed by Aya Morisawa
parent 22f4b3cc7b
commit f59d0a75e4

View file

@ -80,7 +80,7 @@ const handlers: { [key: string]: (window: any, token: any, mentionedRemoteUsers:
},
text({ document }, { content }) {
const t = content.split('\n')
const t = content.split('\n');
for (let i = 0; i < t.length; i++) {
document.body.appendChild(document.createTextNode(t[i]));
if (i != t.length - 1) {