diff options
author | Dan Finlay <flyswatter@users.noreply.github.com> | 2017-06-13 01:37:46 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-13 01:37:46 +0800 |
commit | 8af41f1b0539e70cf4c6e1f4a9f4b10ad13656fc (patch) | |
tree | ee12cfde1362faa69f4725f55b3fdd6c3b8f8e56 | |
parent | 2d5a6729719bc4134e88b046f38c7f08a258d0f5 (diff) | |
parent | 2fcf3d843985e0675fc9780043b0331d45ba7190 (diff) | |
download | tangerine-wallet-browser-8af41f1b0539e70cf4c6e1f4a9f4b10ad13656fc.tar tangerine-wallet-browser-8af41f1b0539e70cf4c6e1f4a9f4b10ad13656fc.tar.gz tangerine-wallet-browser-8af41f1b0539e70cf4c6e1f4a9f4b10ad13656fc.tar.bz2 tangerine-wallet-browser-8af41f1b0539e70cf4c6e1f4a9f4b10ad13656fc.tar.lz tangerine-wallet-browser-8af41f1b0539e70cf4c6e1f4a9f4b10ad13656fc.tar.xz tangerine-wallet-browser-8af41f1b0539e70cf4c6e1f4a9f4b10ad13656fc.tar.zst tangerine-wallet-browser-8af41f1b0539e70cf4c6e1f4a9f4b10ad13656fc.zip |
Merge pull request #1574 from MetaMask/internfix
Wording fix for notice button
-rw-r--r-- | mascara/test/lib/first-time.js | 2 | ||||
-rw-r--r-- | test/integration/lib/first-time.js | 2 | ||||
-rw-r--r-- | ui/app/components/notice.js | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/mascara/test/lib/first-time.js b/mascara/test/lib/first-time.js index 8e33c8a06..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() === 'Continue') { + 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 dbb88a3da..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() === 'Continue') { + 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 3c8523daf..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', }, - }, 'Continue'), + }, 'Accept'), ]) ) } |