diff options
Diffstat (limited to 'ui/app/first-time')
-rw-r--r-- | ui/app/first-time/disclaimer.js | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/ui/app/first-time/disclaimer.js b/ui/app/first-time/disclaimer.js index c6174a220..244b7bc97 100644 --- a/ui/app/first-time/disclaimer.js +++ b/ui/app/first-time/disclaimer.js @@ -50,6 +50,14 @@ DisclaimerScreen.prototype.render = function () { `), h('div.markdown', { + onScroll: (e) => { + var object = e.currentTarget + if (object.offsetHeight + object.scrollTop + 100 >= object.scrollHeight) { + var button = document.getElementById('agree') + button.disabled = false + button.addEventListener('click', () => this.props.dispatch(actions.agreeToDisclaimer())) + } + }, style: { // whiteSpace: 'pre-line', background: 'rgb(235, 235, 235)', @@ -67,11 +75,11 @@ DisclaimerScreen.prototype.render = function () { ]), - h('button', { + h('button#agree', { style: { marginTop: '18px' }, + disabled: true, onClick: () => this.props.dispatch(actions.agreeToDisclaimer()), }, 'I Agree'), ]) ) } - |