Skip to content

Instantly share code, notes, and snippets.

@BrockReece
Last active February 1, 2018 22:38
Show Gist options
  • Save BrockReece/826647d352f5050c48225391ad1c587f to your computer and use it in GitHub Desktop.
Save BrockReece/826647d352f5050c48225391ad1c587f to your computer and use it in GitHub Desktop.
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.intersectionRatio > 0) {
observer.disconnect()
this.showComments = true
}
})
}, this.options)
observer.observe(this.$refs.ending)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment