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 | |
parent | 64d8f91371ad6253e694c472a681e69474a3df94 (diff) | |
download | dexon-wallet-94bfb5410b8548440436215d68769963725adb59.tar.gz dexon-wallet-94bfb5410b8548440436215d68769963725adb59.tar.zst dexon-wallet-94bfb5410b8548440436215d68769963725adb59.zip |
Add links to relevant legal pages on user agreement page.
-rw-r--r-- | USER_AGREEMENT.md | 11 | ||||
-rw-r--r-- | ui/app/first-time/disclaimer.js | 8 |
2 files changed, 14 insertions, 5 deletions
diff --git a/USER_AGREEMENT.md b/USER_AGREEMENT.md index 9a4f0e84..cae45497 100644 --- a/USER_AGREEMENT.md +++ b/USER_AGREEMENT.md @@ -64,7 +64,7 @@ SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF CERTAIN WARRANTIES OR THE LIMIT ## 8. Our Proprietary Rights ## -All title, ownership and intellectual property rights in and to the Service are owned by MetaMask or its licensors. You acknowledge and agree that the Service contains proprietary and confidential information that is protected by applicable intellectual property and other laws. Except as expressly authorized by MetaMask, you agree not to copy, modify, rent, lease, loan, sell, distribute, perform, display or create derivative works based on the Service, in whole or in part. MetaMask issues a license for MetaMask, found [here](https://github.com/MetaMask/metamask-plugin/blob/master/LICENSE). For information on other licenses utilized in the development of MetaMask, please see our attribution page at: https://metamask.io/attributions +All title, ownership and intellectual property rights in and to the Service are owned by MetaMask or its licensors. You acknowledge and agree that the Service contains proprietary and confidential information that is protected by applicable intellectual property and other laws. Except as expressly authorized by MetaMask, you agree not to copy, modify, rent, lease, loan, sell, distribute, perform, display or create derivative works based on the Service, in whole or in part. MetaMask issues a license for MetaMask, found [here](https://github.com/MetaMask/metamask-plugin/blob/master/LICENSE). For information on other licenses utilized in the development of MetaMask, please see our attribution page at: [https://metamask.io/attributions.html](https://metamask.io/attributions.html) ## 9. Links ## @@ -170,7 +170,12 @@ The section titles in the Terms are for convenience only and have no legal or co ### 14.5 Communications ### -Users with questions, complaints or claims with respect to the Service may contact us using the relevant contact information set forth above. +Users with questions, complaints or claims with respect to the Service may contact us using the relevant contact information set forth above and at communications@metamask.io. +## 15 Related Links ## -communications@metamask.io +**[Terms of Use](https://metamask.io/terms.html)** + +**[Privacy](https://metamask.io/privacy.html)** + +**[Attributions](https://metamask.io/attributions.html)** diff --git a/ui/app/first-time/disclaimer.js b/ui/app/first-time/disclaimer.js index 1c01718e..312c864d 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'), ]) ) } |