llamachat/static/script.js

12 lines
264 B
JavaScript

function scrollToBottom() {
window.scrollTo(0, document.body.scrollHeight);
}
window.onload = function() {
scrollToBottom();
htmx.config.allowNestedOobSwaps = false
htmx.config.wsReconnectDelay = function(retryCount) {
return 250;
}
}