askForPin scope
This commit is contained in:
parent
e2bc1eb86a
commit
d5a9a916db
5 changed files with 19 additions and 19 deletions
|
|
@ -1,6 +1,6 @@
|
|||
<div class="createProfile" ng-controller="CreateProfileController" ng-init="init()">
|
||||
|
||||
<div ng-if="!$root.starting && $root.askForPin">
|
||||
<div ng-if="!$root.starting && askForPin">
|
||||
<div ng-include="'views/includes/pin-number.html'"></div>
|
||||
</div>
|
||||
|
||||
|
|
@ -8,7 +8,7 @@
|
|||
<div ng-include="'views/includes/loading.html'" ng-init="title = 'Creating profile'"></div>
|
||||
</div>
|
||||
|
||||
<div class="row m20b" ng-show="!$root.starting && !$root.askForPin">
|
||||
<div class="row m20b" ng-show="!$root.starting && !askForPin">
|
||||
<div class="large-4 large-centered medium-7 medium-centered columns">
|
||||
<div class="logo-setup hide-for-small-only" ng-hide="hideForWP">
|
||||
<img src="img/logo-negative-beta.svg" alt="Copay" width="100">
|
||||
|
|
@ -207,13 +207,13 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row m20b" ng-show="!$root.starting && $root.askForPin">
|
||||
<div class="row m20b" ng-show="!$root.starting && askForPin">
|
||||
<div class="large-4 large-centered medium-6 medium-centered columns">
|
||||
<div class="clipo">
|
||||
<img src="img/clipo-pin.png" alt="clipo" width="380">
|
||||
</div>
|
||||
|
||||
<div class="text-white text-center" ng-show="$root.askForPin == 2">Repeat PIN</div>
|
||||
<div class="text-white text-center" ng-show="askForPin == 2">Repeat PIN</div>
|
||||
<div class="box-notification" ng-show="error">
|
||||
<div class="box-icon error">
|
||||
<i class="fi-x size-24"></i>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<div class="home" ng-controller="HomeController" ng-init="init()">
|
||||
|
||||
|
||||
<div ng-if="$root.askForPin || ($root.hasPin && !$root.iden)">
|
||||
<div ng-if="askForPin || ($root.hasPin && !$root.iden)">
|
||||
<div ng-include="'views/includes/pin-number.html'"></div>
|
||||
</div>
|
||||
|
||||
|
|
@ -58,12 +58,12 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div ng-if='$root.askForPin || ($root.hasPin && !$root.iden)'>
|
||||
<div ng-if='askForPin || ($root.hasPin && !$root.iden)'>
|
||||
<div class="clipo">
|
||||
<img src="img/clipo-pin-enter.png" alt="clipo" width="300" ng-show="$root.hasPin && !$root.iden">
|
||||
<img src="img/clipo-pin.png" alt="clipo" width="380" ng-show="$root.askForPin">
|
||||
<img src="img/clipo-pin.png" alt="clipo" width="380" ng-show="askForPin">
|
||||
</div>
|
||||
<div class="text-white text-center" ng-show="$root.askForPin == 2">Repeat PIN</div>
|
||||
<div class="text-white text-center" ng-show="askForPin == 2">Repeat PIN</div>
|
||||
<div class="box-notification" ng-show="error">
|
||||
<div class="box-icon error">
|
||||
<i class="fi-x size-24"></i>
|
||||
|
|
@ -75,7 +75,7 @@
|
|||
<div ng-include="'views/includes/pin.html'"></div>
|
||||
</div>
|
||||
|
||||
<div ng-if='!$root.hasPin && !$root.askForPin && !$root.iden'>
|
||||
<div ng-if='!$root.hasPin && !askForPin && !$root.iden'>
|
||||
<div class="clipo" ng-hide="hideForWP">
|
||||
<img src="img/clipo-signin.png" alt="clipo" width="310">
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue