Fix advanced button after change tab

This commit is contained in:
Gustavo Maximiliano Cortez 2017-01-06 19:03:09 -03:00
commit a37e125380
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
2 changed files with 7 additions and 4 deletions

View file

@ -7,15 +7,15 @@
<ion-content ng-init="phrase = true">
<div class="row text-center top-tabs">
<div class="col" ng-click="phrase = true; file = hardware = false; showAdv = false" ng-style="phrase &&
<div class="col" ng-click="phrase = true; file = hardware = false" ng-style="phrase &&
{'border-bottom-style': 'solid'}">
<span translate>Recovery phrase</span>
</div>
<div class="col" ng-click="file = true; phrase = hardware = false; showAdv = false" ng-style="file &&
<div class="col" ng-click="file = true; phrase = hardware = false" ng-style="file &&
{'border-bottom-style': 'solid'}">
<span translate>File/Text</span>
</div>
<div class="col" ng-click="hardware = true; phrase = file = false; showAdv = false" ng-style="hardware &&
<div class="col" ng-click="hardware = true; phrase = file = false" ng-style="hardware &&
{'border-bottom-style': 'solid'}" ng-show="isCopay && (isChromeApp || isDevel)">
<span translate>Hardware wallet</span>
</div>