Created
July 30, 2021 22:10
-
-
Save dvinciguerra/5f6b245f343e4b6a6c978e5885536a9a to your computer and use it in GitHub Desktop.
RubyConf 2021 Chat Scroll to Bottom
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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