Skip to content

Commit

Permalink
scrolling fix (not working) re blockcypher#127 and get rid of br
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Flaxman committed Apr 20, 2015
1 parent 87acd87 commit ddd6c7f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 0 additions & 2 deletions templates/balance_widget.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ <h4>
{% endif %}
</i>

<br />

</a>

<p align="center">
Expand Down
8 changes: 4 additions & 4 deletions templates/widgets.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,20 @@ <h1>
<div class="container">
<h4>Address Balance Widget</h4>
<p>Shows the balance of an address (received minus sent). It will display a warning if the balance is unconfirmed.</p>
<iframe src="{{ BASE_URL }}{% url 'render_balance_widget' coin_symbol b58_address %}" frameborder="0"></iframe>
<iframe src="{{ BASE_URL }}{% url 'render_balance_widget' coin_symbol b58_address %}" style="overflow:hidden;" frameborder="0"></iframe>
<p>Balance Widget Code<p>
<form class="form form-horizontal">
<textarea onclick="this.focus();this.select()" readonly="readonly" class="form-control "><iframe src="{{ BASE_URL }}{% url 'render_balance_widget' coin_symbol b58_address %}" frameborder="0"></iframe></textarea>
<textarea onclick="this.focus();this.select()" readonly="readonly" class="form-control "><iframe src="{{ BASE_URL }}{% url 'render_balance_widget' coin_symbol b58_address %}" style="overflow:hidden;" frameborder="0"></iframe></textarea>
</form>

<hr />

<h4>Received Widget</h4>
<p>Shows the amount received by an address. Perfect for projects to show their donation count.</p>
<iframe src="{{ BASE_URL }}{% url 'render_received_widget' coin_symbol b58_address %}" frameborder="0"></iframe>
<iframe src="{{ BASE_URL }}{% url 'render_received_widget' coin_symbol b58_address %}" style="overflow:hidden;" frameborder="0"></iframe>
<p>Received Widget Code<p>
<form class="form form-horizontal">
<textarea onclick="this.focus();this.select()" readonly="readonly" class="form-control "><iframe src="{{ BASE_URL }}{% url 'render_received_widget' coin_symbol b58_address %}" frameborder="0"></iframe></textarea>
<textarea onclick="this.focus();this.select()" readonly="readonly" class="form-control "><iframe src="{{ BASE_URL }}{% url 'render_received_widget' coin_symbol b58_address %}" style="overflow:hidden;" frameborder="0"></iframe></textarea>
</form>

</div>
Expand Down

0 comments on commit ddd6c7f

Please sign in to comment.