aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Serrano <kevin.serrano@consensys.net>2017-06-10 01:48:28 +0800
committerKevin Serrano <kevin.serrano@consensys.net>2017-06-10 01:48:28 +0800
commit2fcf3d843985e0675fc9780043b0331d45ba7190 (patch)
treefd48f71217b44774e3df373f24848db0461aab7e
parentcb95129fa1d1c977444ba410903c6dc0da4de3a6 (diff)
downloadtangerine-wallet-browser-2fcf3d843985e0675fc9780043b0331d45ba7190.tar
tangerine-wallet-browser-2fcf3d843985e0675fc9780043b0331d45ba7190.tar.gz
tangerine-wallet-browser-2fcf3d843985e0675fc9780043b0331d45ba7190.tar.bz2
tangerine-wallet-browser-2fcf3d843985e0675fc9780043b0331d45ba7190.tar.lz
tangerine-wallet-browser-2fcf3d843985e0675fc9780043b0331d45ba7190.tar.xz
tangerine-wallet-browser-2fcf3d843985e0675fc9780043b0331d45ba7190.tar.zst
tangerine-wallet-browser-2fcf3d843985e0675fc9780043b0331d45ba7190.zip
Modify wording to new accept.
-rw-r--r--mascara/test/lib/first-time.js2
-rw-r--r--test/integration/lib/first-time.js2
-rw-r--r--ui/app/components/notice.js2
3 files changed, 3 insertions, 3 deletions
diff --git a/mascara/test/lib/first-time.js b/mascara/test/lib/first-time.js
index 76a4545bf..e42c9e39d 100644
--- a/mascara/test/lib/first-time.js
+++ b/mascara/test/lib/first-time.js
@@ -10,7 +10,7 @@ QUnit.test('render init screen', function (assert) {
app = $('#app-content').contents()
const recurseNotices = function () {
let button = app.find('button')
- if (button.html() === 'Agree') {
+ if (button.html() === 'Accept') {
let termsPage = app.find('.markdown')[0]
termsPage.scrollTop = termsPage.scrollHeight
return wait().then(() => {
diff --git a/test/integration/lib/first-time.js b/test/integration/lib/first-time.js
index f0fa4ee3f..6c8cedbac 100644
--- a/test/integration/lib/first-time.js
+++ b/test/integration/lib/first-time.js
@@ -11,7 +11,7 @@ QUnit.test('render init screen', function (assert) {
const recurseNotices = function () {
let button = app.find('button')
- if (button.html() === 'Agree') {
+ if (button.html() === 'Accept') {
let termsPage = app.find('.markdown')[0]
termsPage.scrollTop = termsPage.scrollHeight
return wait().then(() => {
diff --git a/ui/app/components/notice.js b/ui/app/components/notice.js
index 7fe41fa88..d9f0067cd 100644
--- a/ui/app/components/notice.js
+++ b/ui/app/components/notice.js
@@ -107,7 +107,7 @@ Notice.prototype.render = function () {
style: {
marginTop: '18px',
},
- }, 'Agree'),
+ }, 'Accept'),
])
)
}