Skip to content

Instantly share code, notes, and snippets.

@dvinciguerra
Created July 30, 2021 22:10
Show Gist options
  • Save dvinciguerra/5f6b245f343e4b6a6c978e5885536a9a to your computer and use it in GitHub Desktop.
Save dvinciguerra/5f6b245f343e4b6a6c978e5885536a9a to your computer and use it in GitHub Desktop.
RubyConf 2021 Chat Scroll to Bottom
// colar no devtools e executar
const el = document.querySelector('.chat-scroll')
window.setInterval(function() {
el.scrollTop = el.scrollHeight
}, 50)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment