fix activity view
This commit is contained in:
parent
1ead0c3426
commit
2599f8240d
3 changed files with 25 additions and 17 deletions
|
|
@ -2,30 +2,34 @@
|
||||||
<ion-view>
|
<ion-view>
|
||||||
<ion-nav-bar class="bar-stable">
|
<ion-nav-bar class="bar-stable">
|
||||||
<ion-nav-title>Recent Activity</ion-nav-title>
|
<ion-nav-title>Recent Activity</ion-nav-title>
|
||||||
|
<ion-nav-buttons side="primary">
|
||||||
|
<button class="button no-border" ui-sref="tabs.home">
|
||||||
|
<span translate>Close</span>
|
||||||
|
</button>
|
||||||
|
</ion-nav-buttons>
|
||||||
</ion-nav-bar>
|
</ion-nav-bar>
|
||||||
<ion-content class="padding" ng-controller="activityController" ng-init="init()">
|
<ion-content class="padding" ng-controller="activityController" ng-init="init()">
|
||||||
|
|
||||||
<div ng-if="fetchingNotifications" class="updatingHistory">
|
<div ng-if="fetchingNotifications" class="updatingHistory">
|
||||||
<div class="row" >
|
<div class="text-center">
|
||||||
<ion-spinner class="spinner-dark" icon="lines"></ion-spinner>
|
<ion-spinner class="spinner-dark" icon="lines"></ion-spinner>
|
||||||
</div>
|
<div translate>Updating activity. Please stand by</div>
|
||||||
<div class="row" >
|
|
||||||
<div class="col" translate>Updating activity. Please stand by.</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div ng-if="!fetchingNotifications">
|
<div ng-if="!fetchingNotifications">
|
||||||
<div class="list card" ng-if="!fetchingNotifications">
|
<div class="list card">
|
||||||
<ul>
|
<div class="item item-icon-left" ng-repeat="x in notifications" ng-click="x.action()">
|
||||||
<li ng-repeat="x in notifications" class="item item-icon-left" ng-click="x.action()">
|
<span ng-include="'views/includes/walletActivity.html'"></span>
|
||||||
<span ng-include="'views/includes/walletActivity.html'"></span>
|
</div>
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="item" ng-show="!notifications[0]">
|
<a class="item text-center" ui-sref="activity" ng-show="notificationsMore">
|
||||||
No recent activity
|
<span translate>More</span> ({{notificationsMore}})
|
||||||
</li>
|
</a>
|
||||||
</ul>
|
|
||||||
|
<div class="item" ng-show="!notifications[0]">
|
||||||
|
<span translate>No recent activity</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</ion-content>
|
</ion-content>
|
||||||
|
|
|
||||||
|
|
@ -34,8 +34,8 @@
|
||||||
<div class="col col-80">
|
<div class="col col-80">
|
||||||
<h3 translate>Wallets</h3>
|
<h3 translate>Wallets</h3>
|
||||||
</div>
|
</div>
|
||||||
<div class="col text-right padding" ui-sref="add.main">
|
<div class="col text-right" ui-sref="add.main">
|
||||||
<i class="size-24 icon ion-ios-plus-outline"></i>
|
<i class="size-32 icon ion-ios-plus-empty"></i>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -525,6 +525,10 @@ ul.wallet-selection.wallets {
|
||||||
font-size: 28px;
|
font-size: 28px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.size-32 {
|
||||||
|
font-size: 32px;
|
||||||
|
}
|
||||||
|
|
||||||
.size-36 {
|
.size-36 {
|
||||||
font-size: 36px;
|
font-size: 36px;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue