mirror of
https://github.com/lxsang/antd-web-apps
synced 2024-11-20 02:18:20 +01:00
fix scrolldown bug
This commit is contained in:
parent
635d568627
commit
bfd21ddb94
@ -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: {
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user