Last active
January 27, 2018 17:08
-
-
Save loeffel-io/4fd0999ae6fe36dd734c600c0e57048d to your computer and use it in GitHub Desktop.
scrolledToEnd
This file contains 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
scrolledToEnd(element) { | |
if (!element) return false | |
return (element.scrollHeight - element.clientHeight) === element.scrollTop | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment