fix search
This commit is contained in:
parent
1b8492f0dd
commit
fb83bbba34
5 changed files with 63 additions and 59 deletions
|
|
@ -14,6 +14,9 @@
|
|||
<!-- <body ng-cloak class="ng-cloak"> -->
|
||||
<body >
|
||||
|
||||
<ion-nav-bar class="bar-stable">
|
||||
</ion-nav-bar>
|
||||
|
||||
<!-- <div notifications="right top"></div> -->
|
||||
<!-- ng-class="{ 'main': index.hasProfile }" -->
|
||||
<!-- <ion-nav-bar class="bar-positive"> -->
|
||||
|
|
|
|||
|
|
@ -1,29 +1,28 @@
|
|||
<ion-view view-title="Home">
|
||||
<ion-view cache-view="false">
|
||||
|
||||
<ion-nav-title>Send</ion-nav-title>
|
||||
|
||||
|
||||
<ion-content class="send" ng-controller="tabSendController" ng-init="init()">
|
||||
<h2>Recipient</h2>
|
||||
|
||||
|
||||
<label class="item item-input">
|
||||
<i class="icon ion-search placeholder-icon"></i>
|
||||
<input type="text" placeholder="Search" ng-model="search" ng-change="findContact()">
|
||||
</label>
|
||||
|
||||
<h2>Contacts</h2>
|
||||
<h2>Contacts & Wallets</h2>
|
||||
|
||||
<div class="list card">
|
||||
<a class="item item-icon-left" ng-repeat="item in list" ng-click="openInputAmountModal(item)">
|
||||
<div ng-show="!item.id">
|
||||
<i class="icon ion-ios-person-outline"></i>
|
||||
{{item.label}}
|
||||
</div>
|
||||
<ul class="pr">
|
||||
<li class="item item-icon-left" ng-repeat="item in list" ng-click="openInputAmountModal(item)">
|
||||
|
||||
<div ng-show="item.id">
|
||||
<i class="icon icon-wallet size-21" ng-style="{'color':item.color}"></i>
|
||||
{{item.name || item.alias}}
|
||||
<span class="item-note">
|
||||
{{item.balance || '123,999.91 bits'}}
|
||||
</span>
|
||||
</div>
|
||||
</a>
|
||||
<i ng-show="item.isWallet" class="icon ion-briefcase size-21" ng-style="{'color':item.color}"></i>
|
||||
<i ng-show="!item.isWallet" class="icon ion-ios-person-outline"></i>
|
||||
{{item.label}}
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</ion-content>
|
||||
</ion-view>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,5 @@
|
|||
<ion-view ng-controller="tabSettingsController" cache-view="false" ng-init="init()">
|
||||
<ion-nav-bar class="bar-stable">
|
||||
<ion-nav-title>Global Settings</ion-nav-title>
|
||||
</ion-nav-bar>
|
||||
<ion-content class="has-header">
|
||||
<div class="item item-divider">
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue