fix selected currency in the dropdown list when a currency is selected via the URL

This commit is contained in:
Michael Muré 2014-04-07 23:15:17 +02:00
parent 5bd6924dad
commit de8e53a7fc
3 changed files with 4 additions and 6 deletions

View file

@ -6621,8 +6621,6 @@ janin.currencies = [
janin.currency.createCurrency ("Testnet Bitcoin", 0x6f, 0xef, "9", "c", null)
];
janin.selectedCurrency = janin.currencies[1];
</script>
<script type="text/javascript">
var ninja = { wallets: {} };
@ -9264,6 +9262,7 @@ if (ninja.getQueryString()["showseedpool"] == "true" || ninja.getQueryString()["
document.getElementById("seedpoolarea").style.display = "block";
}
// change currency
janin.selectedCurrency = janin.currencies[1];
if (ninja.getQueryString()["currency"] != undefined) {
for(i = 0; i < janin.currencies.length; i++) {
if (janin.currencies[i].name == ninja.getQueryString()["currency"])
@ -9275,7 +9274,7 @@ var select = document.getElementById("currency");
var options = "";
for(i = 0; i < janin.currencies.length; i++) {
options += "<option value='"+i+"'";
if(janin.currencies[i].name=="Bitcoin")
if(janin.currencies[i].name == janin.currency.name())
options += " selected='selected'";
options += ">"+janin.currencies[i].name+"</option>";
}

View file

@ -90,5 +90,3 @@ janin.currencies = [
janin.currency.createCurrency ("Testnet Bitcoin", 0x6f, 0xef, "9", "c", null)
];
janin.selectedCurrency = janin.currencies[1];

View file

@ -15,6 +15,7 @@ if (ninja.getQueryString()["showseedpool"] == "true" || ninja.getQueryString()["
document.getElementById("seedpoolarea").style.display = "block";
}
// change currency
janin.selectedCurrency = janin.currencies[1];
if (ninja.getQueryString()["currency"] != undefined) {
for(i = 0; i < janin.currencies.length; i++) {
if (janin.currencies[i].name == ninja.getQueryString()["currency"])
@ -26,7 +27,7 @@ var select = document.getElementById("currency");
var options = "";
for(i = 0; i < janin.currencies.length; i++) {
options += "<option value='"+i+"'";
if(janin.currencies[i].name=="Bitcoin")
if(janin.currencies[i].name == janin.currency.name())
options += " selected='selected'";
options += ">"+janin.currencies[i].name+"</option>";
}