diff options
author | Nihar <ndalal@berkeley.edu> | 2017-05-17 05:23:42 +0800 |
---|---|---|
committer | Nihar <ndalal@berkeley.edu> | 2017-05-17 05:23:42 +0800 |
commit | 5c71149a8f1503bd59038b3b31ddfff60e7e6482 (patch) | |
tree | 9a670a50ca61bdbff97b79099db36234ae6acb5d | |
parent | 43ea223c9fe8ee593a572b153defc5ddefd72e95 (diff) | |
download | tangerine-wallet-browser-5c71149a8f1503bd59038b3b31ddfff60e7e6482.tar.gz tangerine-wallet-browser-5c71149a8f1503bd59038b3b31ddfff60e7e6482.tar.zst tangerine-wallet-browser-5c71149a8f1503bd59038b3b31ddfff60e7e6482.zip |
continue button changed to agree
-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..76a4545bf 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() === 'Agree') { 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..f0fa4ee3f 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() === 'Agree') { 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..7fe41fa88 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'), + }, 'Agree'), ]) ) } |