fix status

This commit is contained in:
Matias Alejo Garcia 2016-08-23 12:10:48 -03:00
commit 2897aa3e4c
No known key found for this signature in database
GPG key ID: 02470DB551277AB3
9 changed files with 21 additions and 155 deletions

View file

@ -13,7 +13,6 @@
</head>
<body>
<div notifications="right top"></div>
<ion-nav-view></ion-nav-view>
<script src="lib/ionic.bundle.min.js"></script>

View file

@ -1,18 +0,0 @@
<div class="dr-notification-wrapper" ng-repeat="noti in queue" ng-click="removeNotification(noti)">
<div class="dr-notification animated bounceInDown">
<div class="dr-notification-image" ng-switch on="noti.image">
<i class="{{noti.icon}}" ng-switch-when="false"></i>
<img ng-src="{{noti.image}}" ng-switch-default />
</div>
<div class="dr-notification-content">
<h3 class="dr-notification-title">{{noti.title|translate}}</h3>
<div class="dr-notification-text label radius" ng-show="noti.userData.color"
ng-style="{'background-color':noti.userData.color}">{{noti.content|translate}}
</div>
<div class="dr-notification-text" ng-show="!noti.userData.color"
>{{noti.content|translate}}
</div>
</div>
</div>
</div>

View file

@ -16,5 +16,4 @@ src="img/icon-ledger-white.svg">
<!-- <img style="height:1em" ng&#45;show="wallet.preferences.email" src="img/icon&#45;email.svg"> -->
<img style="height:0.6em; margin-right: 1px;" ng-show="wallet.usingCustomBWS" src="img/icon-bws-white.svg">
<img style="height:0.6em" class="animated flash infinite" ng-show="wallet.loadingWallet ||
index.updatingTxHistory" src="img/icon-sync-white.svg">
<img style="height:0.6em" ng-show="updatingTxHistory" src="img/icon-sync-white.svg">

View file

@ -1,5 +1,5 @@
<ion-modal-view ng-controller="txpDetailsController">
<ion-header-bar align-title="center" class="tab-bar" ng-style="{'background-color':color}">
<ion-header-bar align-title="center" class="tab-bar">
<div class="left-small">
<a ng-click="cancel()" class="p10">
<span class="text-close" translate>Close</span>

View file

@ -130,15 +130,15 @@
translate>No transactions yet {{status.totalBalanceStr}}
</div>
<div ng-show="updatingTxHistory">
<div class="row p20 text-center">
<div class="columns large-12 medium-12 small-12 m10b">
<div ng-show="updatingTxHistory" class="updatingHistory">
<div class="row" >
<ion-spinner class="spinner-dark" icon="lines"></ion-spinner>
</div>
<div class="size-12 text-gray m20t">
<div translate>{{updatingTxHistoryProgress}} transactions downloaded</div>
<div translate>Updating transaction history. Please stand by.</div>
</div>
</div>
<div class="row" >
<div class="col" translate>Updating transaction history. Please stand by.</div>
</div>
<div class="row" ng-show="updatingTxHistoryProgress>0" >
<div class="col" translate>{{updatingTxHistoryProgress}} transactions downloaded</div>
</div>
</div>
@ -215,11 +215,6 @@
</div>
</div>
<div class="text-center" ng-show="updatingTxHistory && !isSearching">
Updating...
<ion-spinner class="spinner-dark" icon="lines"></ion-spinner>
</div>
<ion-infinite-scroll
ng-if="txHistoryShowMore"
on-infinite="showMore()"