aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app')
-rw-r--r--ui/app/components/pages/notice.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/pages/notice.js b/ui/app/components/pages/notice.js
index 4a415287..c0b214a2 100644
--- a/ui/app/components/pages/notice.js
+++ b/ui/app/components/pages/notice.js
@@ -119,7 +119,7 @@ class Notice extends Component {
h('div.markdown', {
onScroll: (e) => {
var object = e.currentTarget
- if (object.offsetHeight + object.scrollTop + 100 >= object.scrollHeight) {
+ if ((object.offsetHeight * 2) + object.scrollTop >= object.scrollHeight) {
this.setState({ disclaimerDisabled: false })
}
},