fix create tabs
This commit is contained in:
parent
7d4f3e425b
commit
4d832258ee
2 changed files with 12 additions and 8 deletions
|
|
@ -21,17 +21,19 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="create-tab" ng-hide="create.hideTabs">
|
||||
<div class="tab-container">
|
||||
<a href
|
||||
<div class="create-tab small-only-text-center" ng-hide="create.hideTabs">
|
||||
<div class="row">
|
||||
<div class="tab-container small-6 medium-3 large-2">
|
||||
<a href
|
||||
ng-class="{'selected': totalCopayers == 1}"
|
||||
ng-click="create.setTotalCopayers(1)" translate>Personal Wallet</a>
|
||||
</div>
|
||||
<div class="tab-container">
|
||||
<a href
|
||||
<div class="tab-container small-6 medium-3 large-2">
|
||||
<a href
|
||||
ng-class="{'selected': totalCopayers != 1}"
|
||||
ng-click="create.setTotalCopayers(3)" translate>Shared Wallet</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<form name="setupForm" ng-submit="create.create(setupForm)" novalidate>
|
||||
|
|
@ -62,7 +64,7 @@
|
|||
<div class="row" ng-show="totalCopayers != 1">
|
||||
<div class="large-6 medium-6 columns">
|
||||
<label><span translate>Select total number of copayers</span>
|
||||
<select class="m10t" ng-model="totalCopayers"
|
||||
<select class="m10t" ng-model="totalCopayers"
|
||||
ng-options="totalCopayers as totalCopayers for totalCopayers in create.TCValues"
|
||||
ng-change="create.setTotalCopayers(totalCopayers)">
|
||||
</select>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue