From 94bfb5410b8548440436215d68769963725adb59 Mon Sep 17 00:00:00 2001 From: Kevin Serrano Date: Tue, 4 Oct 2016 21:03:14 -0700 Subject: Add links to relevant legal pages on user agreement page. --- ui/app/first-time/disclaimer.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'ui/app') diff --git a/ui/app/first-time/disclaimer.js b/ui/app/first-time/disclaimer.js index 1c01718eb..312c864d7 100644 --- a/ui/app/first-time/disclaimer.js +++ b/ui/app/first-time/disclaimer.js @@ -40,6 +40,7 @@ DisclaimerScreen.prototype.render = function () { .markdown { font-family: Times New Roman; + overflow-x: hidden; } .markdown h1, .markdown h2, .markdown h3 { margin: 10px 0; @@ -57,6 +58,10 @@ DisclaimerScreen.prototype.render = function () { margin: 10px 0; } + .markdown a { + color: blue; + } + `), h('div.markdown', { @@ -66,7 +71,6 @@ DisclaimerScreen.prototype.render = function () { if ((object.offsetHeight + object.scrollTop + 100 >= object.scrollHeight) && button.disabled) { button.disabled = false button.innerHTML = 'I Agree' - console.log("YAHALLO") button.addEventListener('click', () => this.props.dispatch(actions.agreeToDisclaimer())) } }, @@ -91,7 +95,7 @@ DisclaimerScreen.prototype.render = function () { style: { marginTop: '18px' }, disabled: true, onClick: () => this.props.dispatch(actions.agreeToDisclaimer()), - }, 'Scroll to Enable'), + }, 'Scroll Down to Enable'), ]) ) } -- cgit