File size: 737 Bytes
e1df603
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// see https://github.com/gradio-app/gradio/issues/8253
// UNKNOWN LICENSE

function Scrolldown() {
    let targetNode = document.querySelector('[aria-label="chatbot conversation"]')
    // Options for the observer (which mutations to observe)
    const config = { attributes: true, childList: true, subtree: true };
    
    // Callback function to execute when mutations are observed
    const callback = (mutationList, observer) => {
    targetNode.scrollTop = targetNode.scrollHeight;
    };
    
    // Create an observer instance linked to the callback function
    const observer = new MutationObserver(callback);
    
    // Start observing the target node for configured mutations
    observer.observe(targetNode, config);
    }