From c52c04db63f0d06ed8d33eb7ea1f140adce80acd Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Sun, 17 Jun 2018 13:00:24 +1000 Subject: [PATCH] Reduced ElementScrollFader height minimum --- public/animation/fade/ElementScrollFader.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/animation/fade/ElementScrollFader.jsx b/public/animation/fade/ElementScrollFader.jsx index 665ab02..fc61ea4 100644 --- a/public/animation/fade/ElementScrollFader.jsx +++ b/public/animation/fade/ElementScrollFader.jsx @@ -61,7 +61,7 @@ class ElementScrollFader extends React.Component { //Get bounds var rect = this.refs.fader.getBoundingClientRect(); //If our top is at least half way UP the page, show - if(rect.top > window.innerHeight / 2) return; + if(rect.top > window.innerHeight / 1.5) return; this.setState({visible: true}); this.detachListener();//stop Listening