fix currency selection
This commit is contained in:
parent
a99b7d6d41
commit
e6dcb2d859
2 changed files with 4 additions and 6 deletions
|
@ -130,7 +130,7 @@
|
||||||
|
|
||||||
<div id="currencyddl" class="hide">
|
<div id="currencyddl" class="hide">
|
||||||
Choose currency :
|
Choose currency :
|
||||||
<select id="currency" onchange="janin.currency.useCurrency(this);"></select>
|
<select id="currency" onchange="janin.currency.useCurrency(this.selectedIndex);"></select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="seedpoolarea"><textarea rows="16" cols="62" id="seedpool"></textarea></div>
|
<div id="seedpoolarea"><textarea rows="16" cols="62" id="seedpool"></textarea></div>
|
||||||
|
|
|
@ -32,12 +32,10 @@ janin.currency = {
|
||||||
return new RegExp("^" + janin.selectedCurrency.CWIF_Start + "[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{51}$");
|
return new RegExp("^" + janin.selectedCurrency.CWIF_Start + "[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{51}$");
|
||||||
},
|
},
|
||||||
|
|
||||||
useCurrency: function(currency) {
|
// Switch currency
|
||||||
janin.selectedCurrency = currency;
|
useCurrency: function(index) {
|
||||||
|
janin.selectedCurrency = janin.currencies[index];
|
||||||
// TODO: regenerate/reset current wallet (single, vanity ...)
|
|
||||||
},
|
},
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
janin.currencies = [
|
janin.currencies = [
|
||||||
|
|
Loading…
Add table
Reference in a new issue