missing semicolon
This commit is contained in:
parent
22f4b3cc7b
commit
f59d0a75e4
|
@ -80,7 +80,7 @@ const handlers: { [key: string]: (window: any, token: any, mentionedRemoteUsers:
|
||||||
},
|
},
|
||||||
|
|
||||||
text({ document }, { content }) {
|
text({ document }, { content }) {
|
||||||
const t = content.split('\n')
|
const t = content.split('\n');
|
||||||
for (let i = 0; i < t.length; i++) {
|
for (let i = 0; i < t.length; i++) {
|
||||||
document.body.appendChild(document.createTextNode(t[i]));
|
document.body.appendChild(document.createTextNode(t[i]));
|
||||||
if (i != t.length - 1) {
|
if (i != t.length - 1) {
|
||||||
|
|
Loading…
Reference in New Issue