1
0
mirror of https://github.com/lxsang/antd-web-apps synced 2025-04-20 02:26:45 +02:00

Merge pull request #21 from lxsang/master

allow tab, math and highlight in comments
This commit is contained in:
Xuan Sang LE 2020-09-22 17:16:54 +02:00 committed by GitHub
commit 99414311e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;
} }