Skip to content

Instantly share code, notes, and snippets.

@elliotec
Created June 8, 2017 21:17
Show Gist options
  • Save elliotec/1ccd23fd1d095205c861447e0fe3dc08 to your computer and use it in GitHub Desktop.
Save elliotec/1ccd23fd1d095205c861447e0fe3dc08 to your computer and use it in GitHub Desktop.
static handleShowGoogleAdsense() {
if (__CLIENT__ && (document.getElementById('adsTrigger').getBoundingClientRect().top) <= (window.innerHeight + 100)) {
console.log(this);
this.props.onShowGoogleAdSense();
}
}
componentDidMount() {
window.addEventListener('scroll', Product.handleShowGoogleAdsense);
}
componentWillUnmount() {
window.removeEventListener('scroll', Product.handleShowGoogleAdsense);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment