forked from nicolas-van/bootstrap-4-github-pages
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbutton.html
70 lines (58 loc) · 2.34 KB
/
button.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
---
layout: page
title: Your button
---
<div id="alert_invalid_address" class="d-none">
<div class="alert alert-danger">Please provide a valid BCH address.</div>
{% include button_form.html %}
</div>
<section id="section_button" class="my-5">
<h2 class="h6 mb-4">
<span class="_address">{address}</span>
<small>(<a href="https://www.bitcoincash.org/spec/cashaddr.html" target="_blank">cash address</a>)</small>
</h2>
<div class="row">
<div class="col-lg-3 mb-4">
<div id="frame" style="height: 150px; width: 150px"></div>
</div>
<div class="col-lg-7">
<label for="textarea">Include the following line in your HTML:</label>
<textarea id="textarea" rows="4" class="form-control" readonly></textarea>
</div>
</div>
</section>
<script src="{{ "/assets/javascript/bchaddrjs-0.4.4.min.js" | relative_url }}"></script>
<script>
let alertInvalidAddressShow = true;
let alertInvalidAddress = $('#alert_invalid_address');
let sectionButton = $('#section_button');
let frame = $('#frame');
let textarea = $('#textarea');
let params = new URLSearchParams(window.location.search);
if (params.has('address')) {
let address = params.get('address');
if (bchaddr.isValidAddress(address)) {
// address is a valid bitcoin cash address
alertInvalidAddressShow = false;
address = bchaddr.toCashAddress(address);
$('._address').html(address);
address = address.replace('bitcoincash:', '');
let port = location.port;
if (port > 0 && port !== 80 && port !== 443)
port = ':' + port;
else
port = '';
let iframeHtmlParams = "?a=" + address;
if (params.has('label')) {
iframeHtmlParams = iframeHtmlParams.concat(("&l=" + params.get('label')));
}
let iframeHtml = "<iframe src='" + window.location.protocol + "//" + window.location.hostname + port + "/e" + iframeHtmlParams + "' width='150' height='150' style='border:none;overflow:hidden'></iframe>";
textarea.val(iframeHtml);
frame.html(iframeHtml);
}
}
if (alertInvalidAddressShow) {
alertInvalidAddress.removeClass('d-none');
sectionButton.hide();
}
</script>