Merge pull request #1574 from MetaMask/internfix

Wording fix for notice button
This commit is contained in:
Dan Finlay 2017-06-12 10:37:46 -07:00 committed by GitHub
commit 8af41f1b05
3 changed files with 3 additions and 3 deletions

View File

@ -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(() => {

View File

@ -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(() => {

View File

@ -107,7 +107,7 @@ Notice.prototype.render = function () {
style: {
marginTop: '18px',
},
}, 'Continue'),
}, 'Accept'),
])
)
}