fix order of transactions list. New format of timestamp.

This commit is contained in:
Gustavo Maximiliano Cortez 2014-11-07 17:02:28 -03:00
parent c132346959
commit 73ab099236
2 changed files with 13 additions and 4 deletions

View File

@ -13,12 +13,19 @@
ng-if="blockchain_txs[0].txid">
<div class="large-12 columns">
<div class="panel oh"
ng-repeat="btx in blockchain_txs | orderBy: 'time':true" ng-click="btx.showDetails = !btx.showDetails">
<div class="panel"
ng-repeat="btx in blockchain_txs | orderBy:'-ts'" ng-click="btx.showDetails = !btx.showDetails">
<div class="row size-14">
<div class="large-2 medium-2 small-12 columns">
<div class="tx-date">
<time ng-if="btx.ts">{{btx.ts | amCalendar}}</time>
<time
class="hastip"
ng-if="btx.ts"
data-options="disable_for_touch:true"
tooltip-popup-delay='500'
tooltip-placement="top"
tooltip="{{btx.ts | amCalendar}}"
tooltip-placement="left">{{btx.ts | amTimeAgo}}</time>
<span class="label alert" ng-show="!btx.ts && (!btx.confirmations || btx.confirmations == 0)">
<span translate>Unconfirmed</span>
</span>

View File

@ -43,7 +43,9 @@
</span>
<i class="fi-info medium right text-gray size-14"
tooltip="{{'Balance locked in pending transaction proposals'|translate}}"
tooltip-placement="left"></i>
tooltip-placement="left"
data-options="disable_for_touch:true"
tooltip-popup-delay='500'></i>
</div>