Skip to content

Commit fca0ccc

Browse files
author
Mario Colque
committed
Merge pull request #498 from cmgustavo/bug/minor-details
Fixes: removed white spaces. Changed loader gif
2 parents f55ece0 + 58b7b67 commit fca0ccc

File tree

9 files changed

+16
-8
lines changed

9 files changed

+16
-8
lines changed

public/css/main.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/img/loading.gif

-1.1 KB
Loading

public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ <h3 class="modal-title">Scan Code</h3>
4444
</div>
4545
<div id="footer" role="navigation">
4646
<div class="container" data-ng-controller="FooterController">
47-
<a class="insight m10v pull-right" href="/">insight <small>API v{{version}}</small></a>
47+
<a class="insight m10v pull-right" target="_blank" href="http://insight.is">insight <small>API v{{version}}</small></a>
4848
</div>
4949
</div>
5050
<script src="/socket.io/socket.io.js"></script>

public/src/css/common.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,14 @@ margin-left: 0;
207207
padding-left: 25px;
208208
}
209209

210+
.loader-gif {
211+
display: inline-block;
212+
width: 16px;
213+
height: 11px;
214+
background: transparent url(../img/loading.gif) no-repeat;
215+
margin-left: 5px;
216+
}
217+
210218
#search::-webkit-input-placeholder {
211219
color: #BCDF7E;
212220
font-family: 'Ubuntu', sans-serif;

public/views/address.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ <h3>Address</h3> {{address.addrStr}}
1919
</div>
2020
<h1>Address <small data-ng-show="address.addrStr">{{$root.currency.getConvertion(address.balance) || address.balance + ' BTC'}}</small></h1>
2121
<div class="text-muted" data-ng-if="!address.addrStr">
22-
<span>Loading Address Information...</span>
22+
<span>Loading Address Information <span class="loader-gif"></span>
2323
</div>
2424
<div data-ng-if="address.addrStr">
2525
<div class="well well-sm ellipsis">

public/views/block.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ <h3 class="text-left">Block #{{block.height}}</h3>
3333
</div>
3434
<h1>Block #{{block.height}}</h1>
3535
<div class="text-muted" data-ng-if="!block.hash">
36-
<span>Loading Block Information...</span>
36+
<span>Loading Block Information <span class="loader-gif"></span>
3737
</div>
3838
<div data-ng-if="block.hash">
3939
<div class="well well-sm ellipsis">

public/views/block_list.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ <h1>
4545
</thead>
4646
<tbody>
4747
<tr data-ng-show="loading">
48-
<td colspan="4">Waiting for blocks...</td>
48+
<td colspan="5">Waiting for blocks <span class="loader-gif"></span></td>
4949
</tr>
5050
<tr class="fader" data-ng-repeat='b in blocks'>
5151
<td><a href="/block/{{b.hash}}">{{b.height}}</a></td>

public/views/transaction.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ <h1>Transaction
3232
</h1>
3333
<div class="progress progress-striped active" data-ng-if="!tx.txid">
3434
<div class="progress-bar progress-bar-info" style="width: 100%">
35-
<span>Loading Transaction Details...</span>
35+
<span>Loading Transaction Details <span class="loader-gif"></span>
3636
</div>
3737
</div>
3838
<div data-ng-if="tx.txid">

public/views/transaction/tx.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
{{$root.currency.getConvertion(vin.value) || vin.value + ' BTC'}}
6565
</div>
6666
<div class="ellipsis">
67-
<a class="glyphicon glyphicon-chevron-right" href="/tx/{{vin.txid}}/>/{{vin.vout}}" title="Outpoint: {{vin.txid}},{{vin.vout}}"></a>&nbsp;&nbsp;
67+
<a class="glyphicon glyphicon-chevron-right" href="/tx/{{vin.txid}}/>/{{vin.vout}}" title="Outpoint: {{vin.txid}},{{vin.vout}}"></a>
6868
<span data-ng-show="vin.notAddr">{{vin.addr}}</span>
6969
<a href="/address/{{vin.addr}}" data-ng-show="!vin.notAddr">{{vin.addr}}</a>
7070
</div>
@@ -144,7 +144,7 @@
144144
<div class="pull-right btc-value">
145145
<span>{{$root.currency.getConvertion(vout.value) || vout.value + ' BTC'}}
146146
<span class="text-success" data-ng-show="!vout.spentTxId" tooltip="Output is unspent" tooltip-placement="left">(U)</span>
147-
<a class="glyphicon glyphicon-chevron-right" data-ng-show="vout.spentTxId" href="/tx/{{vout.spentTxId}}/</{{vout.spentIndex}}" title="Spent at: {{vout.spentTxId}},{{vout.spentIndex}}"></a>&nbsp;&nbsp;
147+
<a class="glyphicon glyphicon-chevron-right" data-ng-show="vout.spentTxId" href="/tx/{{vout.spentTxId}}/</{{vout.spentIndex}}" title="Spent at: {{vout.spentTxId}},{{vout.spentIndex}}"></a>
148148
</span>
149149
</div>
150150
<div class="ellipsis">

0 commit comments

Comments
 (0)