llamachat/static/script.js

13 lines
294 B
JavaScript

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