Fix addressbook route
This commit is contained in:
parent
fd637184e4
commit
38fb1c033d
5 changed files with 13 additions and 20 deletions
|
|
@ -1,10 +1,8 @@
|
||||||
<ion-view>
|
<ion-view>
|
||||||
<ion-nav-bar class="bar-royal">
|
<ion-nav-bar class="bar-royal">
|
||||||
<ion-nav-buttons side="primary">
|
<ion-nav-back-button>
|
||||||
<button class="button button-clear" ui-sref="tabs.addressbook">
|
<i class="icon ion-ios-arrow-thin-left"></i>
|
||||||
<i class="icon ion-ios-arrow-thin-left"></i>
|
</ion-nav-back-button>
|
||||||
</button>
|
|
||||||
</ion-nav-buttons>
|
|
||||||
<ion-nav-title>
|
<ion-nav-title>
|
||||||
<span translate>Add entry</span>
|
<span translate>Add entry</span>
|
||||||
</ion-nav-title>
|
</ion-nav-title>
|
||||||
|
|
|
||||||
|
|
@ -1,15 +1,13 @@
|
||||||
<ion-view>
|
<ion-view>
|
||||||
<ion-nav-bar class="bar-royal">
|
<ion-nav-bar class="bar-royal">
|
||||||
<ion-nav-buttons side="primary">
|
<ion-nav-back-button>
|
||||||
<button class="button button-clear" ui-sref="tabs.settings">
|
<i class="icon ion-ios-arrow-thin-left"></i>
|
||||||
<i class="icon ion-ios-arrow-thin-left"></i>
|
</ion-nav-back-button>
|
||||||
</button>
|
|
||||||
</ion-nav-buttons>
|
|
||||||
<ion-nav-title>
|
<ion-nav-title>
|
||||||
<span translate>Addressbook</span>
|
<span translate>Addressbook</span>
|
||||||
</ion-nav-title>
|
</ion-nav-title>
|
||||||
<ion-nav-buttons side="secondary">
|
<ion-nav-buttons side="secondary">
|
||||||
<button class="button button-clear" ui-sref="tabs.addressbook.add">
|
<button class="button button-back button-clear" ui-sref="tabs.addressbook.add">
|
||||||
<i class="icon ion-ios-plus-empty"></i>
|
<i class="icon ion-ios-plus-empty"></i>
|
||||||
</button>
|
</button>
|
||||||
</ion-nav-buttons>
|
</ion-nav-buttons>
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,8 @@
|
||||||
<ion-view>
|
<ion-view>
|
||||||
<ion-nav-bar class="bar-royal">
|
<ion-nav-bar class="bar-royal">
|
||||||
<ion-nav-buttons side="primary">
|
<ion-nav-back-button>
|
||||||
<button class="button button-clear" ui-sref="tabs.addressbook">
|
<i class="icon ion-ios-arrow-thin-left"></i>
|
||||||
<i class="icon ion-ios-arrow-thin-left"></i>
|
</ion-nav-back-button>
|
||||||
</button>
|
|
||||||
</ion-nav-buttons>
|
|
||||||
<ion-nav-title>
|
<ion-nav-title>
|
||||||
<span translate>Addressbook</span>
|
<span translate>Addressbook</span>
|
||||||
</ion-nav-title>
|
</ion-nav-title>
|
||||||
|
|
|
||||||
|
|
@ -17,9 +17,8 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="card" ng-if="list[0]">
|
<div class="card" ng-if="list[0]">
|
||||||
<div class="item item-heading item-icon-right" ui-sref="tabs.addressbook">
|
<div class="item item-heading">
|
||||||
<span translate>Contacts & Wallets</span>
|
<span translate>Contacts & Wallets</span>
|
||||||
<i class="icon nav-item-arrow-right"></i>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="item text-center" ng-show="!list[0]" translate>No Wallet - Contact</div>
|
<div class="item text-center" ng-show="!list[0]" translate>No Wallet - Contact</div>
|
||||||
<a class="item item-icon-left" ng-repeat="item in list" ng-click="goToAmount(item)">
|
<a class="item item-icon-left" ng-repeat="item in list" ng-click="goToAmount(item)">
|
||||||
|
|
|
||||||
|
|
@ -495,7 +495,7 @@ angular.module('copayApp').config(function(historicLogProvider, $provide, $logPr
|
||||||
.state('tabs.addressbook', {
|
.state('tabs.addressbook', {
|
||||||
url: '/addressbook',
|
url: '/addressbook',
|
||||||
views: {
|
views: {
|
||||||
'tab-settings': {
|
'tab-settings@tabs': {
|
||||||
templateUrl: 'views/addressbook.html',
|
templateUrl: 'views/addressbook.html',
|
||||||
controller: 'addressbookListController'
|
controller: 'addressbookListController'
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue