copay/www/views/export.html

25 lines
863 B
HTML
Raw Normal View History

2016-10-13 07:45:45 -07:00
<ion-view id="export">
2016-09-07 08:23:09 -07:00
<ion-nav-bar class="bar-royal">
<ion-nav-title>{{'Export wallet' | translate}}</ion-nav-title>
<ion-nav-back-button>
</ion-nav-back-button>
</ion-nav-bar>
2016-10-12 14:11:02 -07:00
<ion-content>
2017-01-18 08:15:46 -08:00
<div ng-include="'views/includes/walletItem.html'"></div>
2017-01-18 08:15:46 -08:00
2016-10-14 06:54:55 -07:00
<div class="row text-center top-tabs">
<div class="col" ng-click="file.value = true" ng-style="file.value && {'border-bottom-style': 'solid'}">
2016-09-07 08:23:09 -07:00
<span class="" translate>File/Text</span>
</div>
2016-10-14 06:54:55 -07:00
<div class="col" ng-click="generateQrCode();" ng-style="!file.value && {'border-bottom-style': 'solid'}">
2016-09-07 08:23:09 -07:00
<span class="" translate>QR Code</span>
</div>
</div>
2016-08-18 15:23:58 -07:00
2016-10-12 14:11:02 -07:00
<div ng-include="'views/tab-export-file.html'" ng-if="file.value"></div>
<div ng-include="'views/tab-export-qrCode.html'" ng-if="!file.value"></div>
2016-09-07 08:23:09 -07:00
</ion-content>
2016-08-16 12:47:51 -07:00
</ion-view>