diff options
author | Kevin Serrano <kevgagser@gmail.com> | 2016-10-05 12:03:14 +0800 |
---|---|---|
committer | Kevin Serrano <kevgagser@gmail.com> | 2016-10-05 12:03:14 +0800 |
commit | 94bfb5410b8548440436215d68769963725adb59 (patch) | |
tree | 11f4b0c675144d7e032bb8cc5bacb5efc6c1d660 /ui | |
parent | 64d8f91371ad6253e694c472a681e69474a3df94 (diff) | |
download | tangerine-wallet-browser-94bfb5410b8548440436215d68769963725adb59.tar tangerine-wallet-browser-94bfb5410b8548440436215d68769963725adb59.tar.gz tangerine-wallet-browser-94bfb5410b8548440436215d68769963725adb59.tar.bz2 tangerine-wallet-browser-94bfb5410b8548440436215d68769963725adb59.tar.lz tangerine-wallet-browser-94bfb5410b8548440436215d68769963725adb59.tar.xz tangerine-wallet-browser-94bfb5410b8548440436215d68769963725adb59.tar.zst tangerine-wallet-browser-94bfb5410b8548440436215d68769963725adb59.zip |
Add links to relevant legal pages on user agreement page.
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/first-time/disclaimer.js | 8 |
1 files changed, 6 insertions, 2 deletions
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'), ]) ) } |