Generate currency drop-down list from know currency

This commit is contained in:
Michael Muré 2014-03-06 22:09:31 +01:00
parent 9376987e6c
commit 582f04d293
4 changed files with 48 additions and 90 deletions

File diff suppressed because one or more lines are too long

View file

@ -129,12 +129,7 @@
<div id="testnet"></div> <div id="testnet"></div>
<div id="currencyddl" class="hide"> <div id="currencyddl" class="hide">
<select id="walletType" onchange="janin.currency.useCurrency(this);"> <select id="currency" onchange="janin.currency.useCurrency(this);"></select>
<option value="0" selected="selected">Bitcoin</option>
<option value="1">Dogecoin</option>
<option value="2">Litecoin</option>
</select>
</div> </div>
<div class="menu" id="menu"> <div class="menu" id="menu">

View file

@ -46,30 +46,3 @@ janin.currencies = [
]; ];
janin.selectedCurrency = janin.currencies[0]; janin.selectedCurrency = janin.currencies[0];
/*
janin.currency.useCurrencyWallet = function(_networkVersion, _privateKeyPrefix, _walletImportFormatRegEx, _compressedWalletImportRegEx) {
Bitcoin.Address.networkVersion = _networkVersion; // mainnet
Bitcoin.ECKey.privateKeyPrefix = _privateKeyPrefix; // mainnet 0x80 testnet 0xEF
// 51 characters base58, always starts with a '5'
Bitcoin.ECKey.isWalletImportFormat = function (key) {
key = key.toString();
var currencyRegEx = new RegExp(_walletImportFormatRegEx);
var testnetRegEx = new RegExp("^9[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{50}$");
return (ECKey.privateKeyPrefix == _privateKeyPrefix) ? (currencyRegEx.test(key)) : (testnetRegEx.test(key));
};
// 52 characters base58
Bitcoin.ECKey.isCompressedWalletImportFormat = function (key) {
key = key.toString();
var currencyRegEx = new RegExp(_compressedWalletImportRegEx);
var testnetRegEx = new RegExp("^c[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{51}$");
return (ECKey.privateKeyPrefix == _privateKeyPrefix) ? (currencyRegEx.test(key)) : (testnetRegEx.test(key));
};
ninja.wallets.singlewallet.generateNewAddressAndKey();
}*/

View file

@ -13,4 +13,11 @@ if (ninja.getQueryString()["culture"] != undefined) {
} }
if (ninja.getQueryString()["showseedpool"] == "true" || ninja.getQueryString()["showseedpool"] == "1") { if (ninja.getQueryString()["showseedpool"] == "true" || ninja.getQueryString()["showseedpool"] == "1") {
document.getElementById("seedpoolarea").style.display = "block"; document.getElementById("seedpoolarea").style.display = "block";
} }
// populate currency dropdown list
var select = document.getElementById("currency");
var options = "";
for(i = 0; i < janin.currencies.length; i++) {
options += "<option value='"+i+"'>"+janin.currencies[i].name+"</option>";
}
select.innerHTML = options;