Fix history for small devices (was broken)
This commit is contained in:
parent
6e06deeba6
commit
187fb65ff7
1 changed files with 6 additions and 7 deletions
|
|
@ -8,10 +8,8 @@
|
||||||
<div ng-if="!blockchain_txs[0].txid && !loading">
|
<div ng-if="!blockchain_txs[0].txid && !loading">
|
||||||
<em><strong translate>No transactions yet.</strong></em>
|
<em><strong translate>No transactions yet.</strong></em>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div class="row" ng-if="blockchain_txs[0].txid">
|
||||||
class="row"
|
<div class="large-12 columns">
|
||||||
ng-if="blockchain_txs[0].txid">
|
|
||||||
<div class="large-12 columns"></div>
|
|
||||||
<div class="panel"
|
<div class="panel"
|
||||||
ng-repeat="btx in blockchain_txs | orderBy:'-ts'" ng-click="btx.showDetails = !btx.showDetails">
|
ng-repeat="btx in blockchain_txs | orderBy:'-ts'" ng-click="btx.showDetails = !btx.showDetails">
|
||||||
<div class="row size-14">
|
<div class="row size-14">
|
||||||
|
|
@ -39,7 +37,7 @@
|
||||||
<b>{{btx.amount| noFractionNumber}} {{$root.wallet.settings.unitName}}</b>
|
<b>{{btx.amount| noFractionNumber}} {{$root.wallet.settings.unitName}}</b>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="large-1 medium-1 small-2 columns text-center">
|
<div class="large-1 medium-1 small-2 columns text-center">
|
||||||
<div ng-class="{
|
<div ng-class="{
|
||||||
'text-primary' : btx.action == 'received',
|
'text-primary' : btx.action == 'received',
|
||||||
|
|
@ -93,9 +91,9 @@
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<div class="line"></div>
|
<div class="line"></div>
|
||||||
<div class="size-12 text-gray">
|
<div class="size-12 text-gray text-right">
|
||||||
|
<a href="http://{{getShortNetworkName()}}.insight.is/tx/{{btx.txid}}" target="_blank"> More details <i class="icon-arrow-right2 vm"></i></a>
|
||||||
<span class="left hide-for-small-only">Transaction ID: {{btx.txid}} </span>
|
<span class="left hide-for-small-only">Transaction ID: {{btx.txid}} </span>
|
||||||
<a href="http://{{getShortNetworkName()}}.insight.is/tx/{{btx.txid}}" target="_blank" class="right"> More details <i class="icon-arrow-right2 vm"></i> </a>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -116,4 +114,5 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue