1
0
mirror of https://github.com/lxsang/antd-web-apps synced 2024-11-20 02:18:20 +01:00

allow tab, math and highlight in comments

This commit is contained in:
lxsang 2020-09-22 17:16:23 +02:00
parent 25306c4e8e
commit 1e5f2e7fee

View File

@ -204,13 +204,13 @@ class QuickTalk {
ret.result.forEach((comment) => { ret.result.forEach((comment) => {
this.show_comment(container, comment, true); this.show_comment(container, comment, true);
}); });
if (this.options.onload) {
this.options.onload();
}
} }
else { else {
this.error(ret.error); this.error(ret.error);
} }
if (this.options.onload) {
this.options.onload();
}
}); });
return container; return container;
} }