1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-26 12:29:06 +01:00

continue button changed to agree

This commit is contained in:
Nihar 2017-05-16 14:23:42 -07:00
parent 43ea223c9f
commit 5c71149a8f
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() === 'Agree') {
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() === 'Agree') {
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'),
}, 'Agree'),
])
)
}