Skip to content

Commit 03201c8

Browse files
Add auto scroll after the bot's message
1 parent c0e37cb commit 03201c8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

chat/templates/chat/index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ <h2 id="dragAndDropContentHeading" class="grey-text lighten-1" align="center">Dr
146146
$(botChatDiv).prepend(botColDiv);
147147
$(botChatDiv).prepend(botImage);
148148
$(".messages").append(botChatDiv);
149-
$("body").animate({
149+
$("body, html").animate({
150150
scrollTop: $(document).height() - $(window).height()
151151
}, {
152152
complete: function() {
@@ -313,8 +313,8 @@ <h2 id="dragAndDropContentHeading" class="grey-text lighten-1" align="center">Dr
313313
$(botChatDiv).prepend(botColDiv);
314314
$(botChatDiv).prepend(botImage);
315315
$(".messages").append(botChatDiv);
316-
$(".messages").animate({
317-
scrollTop: $(".messages").scrollHeight
316+
$("body, html").animate({
317+
scrollTop: $(document).height() - $(window).height()
318318
}, 100);
319319

320320
}

0 commit comments

Comments
 (0)