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

fix scrolldown bug

This commit is contained in:
lxsang 2020-12-09 11:51:59 +01:00
parent 635d568627
commit bfd21ddb94
2 changed files with 7 additions and 0 deletions

View File

@ -56,6 +56,7 @@
$(document).ready(function() {
var options = {
target: "quick_talk_comment_thread",
page: "desktop",
api_uri: "https://chat.iohub.dev/comment",
uri: "<?=url?>",
author: {

View File

@ -4,6 +4,9 @@ class QuickTalk {
if (typeof this.options.target === "string") {
this.options.target = document.getElementById(this.options.target);
}
if (typeof this.options.page && typeof this.options.page === "string") {
this.options.page = document.getElementById(this.options.page);
}
this.preview_on = false;
this.instant_compose = undefined;
let editor = document.createElement("div");
@ -196,6 +199,9 @@ class QuickTalk {
container.appendChild(preview);
container.appendChild(footer);
at.appendChild(container);
if (this.options.page) {
this.options.page.scrollTop = this.options.page.scrollHeight;
}
//container.scrollIntoView();
return container;
}