Merge pull request #238 from abel30567/master

iPhone Mobile view fix
master
moneroexamples 4 years ago committed by GitHub
commit d24bac4891
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -229,7 +229,7 @@ Every 10000 blocks, the thread will save current emission in a file, by default,
need to rescan entire blockchain whenever the explorer is restarted. When the need to rescan entire blockchain whenever the explorer is restarted. When the
explorer restarts, the thread will first check if `~/.bitmonero/lmdb/emission_amount.txt` explorer restarts, the thread will first check if `~/.bitmonero/lmdb/emission_amount.txt`
is present, read its values, and continue from there if possible. Subsequently, only the initial is present, read its values, and continue from there if possible. Subsequently, only the initial
use of the tread is time consuming. Once the thread scans the entire blockchain, it updates use of the thread is time consuming. Once the thread scans the entire blockchain, it updates
the emission amount using new blocks as they come. Since the explorer writes this file, there can the emission amount using new blocks as they come. Since the explorer writes this file, there can
be only one instance of it running for mainnet, testnet and stagenet. Thus, for example, you can't have be only one instance of it running for mainnet, testnet and stagenet. Thus, for example, you can't have
two explorers for mainnet two explorers for mainnet

@ -101,6 +101,7 @@ form {
bottom: 0; bottom: 0;
padding: 20px; padding: 20px;
border: 1px solid #ccc; border: 1px solid #ccc;
display: none;
} }
[type=radio]:checked ~ label { [type=radio]:checked ~ label {
@ -113,6 +114,11 @@ form {
z-index: 1; z-index: 1;
} }
#tab-1:checked ~ .content.tab-1,
#tab-2:checked ~ .content.tab-2 {
display: block;
}
input#toggle-1[type=checkbox] { input#toggle-1[type=checkbox] {
position: absolute; position: absolute;
/*top: -9999px;*/ /*top: -9999px;*/

@ -80,7 +80,7 @@
<div class="tab"> <div class="tab">
<input type="radio" id="tab-1" name="tab-group-1" checked> <input type="radio" id="tab-1" name="tab-group-1" checked>
<label for="tab-1">Decode outputs</label> <label for="tab-1">Decode outputs</label>
<div class="content"> <div class="content tab-1">
<h4 style="margin: 0px">Check which outputs belong to given Monero address/subaddress and viewkey</h4> <h4 style="margin: 0px">Check which outputs belong to given Monero address/subaddress and viewkey</h4>
<h5 style="margin: 0px"> <h5 style="margin: 0px">
For RingCT transactions, outputs' amounts are also decoded For RingCT transactions, outputs' amounts are also decoded
@ -102,7 +102,7 @@
<input type="radio" id="tab-2" name="tab-group-1"> <input type="radio" id="tab-2" name="tab-group-1">
<label for="tab-2">Prove sending</label> <label for="tab-2">Prove sending</label>
<div class="content"> <div class="content tab-2">
<h4 style="margin: 0px">Prove to someone that you have sent them Monero in this transaction</h4> <h4 style="margin: 0px">Prove to someone that you have sent them Monero in this transaction</h4>
<h5 style="margin: 0px"> <h5 style="margin: 0px">
Tx private key can be obtained using <i>get_tx_key</i> Tx private key can be obtained using <i>get_tx_key</i>

Loading…
Cancel
Save