This repository has been archived by the owner on Apr 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'development' into 280-persist-network-on-new-account
- Loading branch information
Showing
13 changed files
with
84 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,36 @@ | ||
form | ||
form(ng-if='$ctrl.step === 1') | ||
md-toolbar | ||
.md-toolbar-tools | ||
h2 | ||
span(ng-if="!$ctrl.enter") Save your passphrase in a safe place! | ||
span(ng-if="$ctrl.enter") Enter the missing word to continue | ||
h2 Save your passphrase in a safe place! | ||
span(flex='') | ||
md-button.md-icon-button(ng-click='$ctrl.close()', aria-label='Close dialog') | ||
i.material-icons close | ||
md-dialog-content | ||
.md-dialog-content | ||
md-input-container.md-block(ng-if="!$ctrl.enter") | ||
textarea.passphrase(ng-bind='$ctrl.passphrase', md-autofocus, readonly) | ||
div(ng-if="$ctrl.enter") | ||
md-input-container.md-block | ||
textarea.passphrase(ng-bind='$ctrl.passphrase', md-autofocus, readonly, aria-label='Passphrase') | ||
md-dialog-actions(layout='row') | ||
md-button.close-button(ng-click="$ctrl.close()") Cancel | ||
span(flex) | ||
md-button.md-raised.md-primary.yes-its-save-button(ng-click="$ctrl.next()") Yes! It's safe! | ||
form(ng-if='$ctrl.step === 2') | ||
md-toolbar | ||
.md-toolbar-tools | ||
h2 Enter the missing word to continue | ||
span(flex='') | ||
md-button.md-icon-button(ng-click='$ctrl.close()', aria-label='Close dialog') | ||
i.material-icons close | ||
md-dialog-content | ||
.md-dialog-content | ||
div | ||
p.passphrase | ||
span {{ $ctrl.pre }} | ||
span.missing ----- | ||
span {{ $ctrl.pos }} | ||
md-input-container.md-block(md-is-error='!$ctrl.missing_ok') | ||
label Enter the missing word | ||
input(ng-model='$ctrl.missing_input') | ||
input(ng-model='$ctrl.missing_input', md-autofocus, aria-label='Enter the missing word') | ||
md-dialog-actions(layout='row') | ||
md-button.close-button(ng-click="$ctrl.close()") Close | ||
md-button.back-button(ng-click="$ctrl.back()") Back | ||
span(flex) | ||
md-button.yes-its-save-button(ng-click="$ctrl.next()", ng-show='!$ctrl.enter') Yes! It's safe! | ||
md-button.ok-button(ng-click="$ctrl.ok()", ng-show='$ctrl.enter', ng-disabled='!$ctrl.missing_ok') OK | ||
md-button.md-raised.md-primary.ok-button(ng-click="$ctrl.ok()", ng-disabled='!$ctrl.missing_ok', ng-bind='$ctrl.okButtonLabel') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters