diff --git a/index.html b/index.html
index 0019690..7104a23 100644
--- a/index.html
+++ b/index.html
@@ -6128,9 +6128,13 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height:
-
+
+
+
Supported currencies :
+
+
Step 0. Follow the security checklist recommendation
First step is to download this website from Github and open the index.html file directly from your computer. It's just too easy to sneak some evil code in the 6000+ lines of javascript to leak your private key, and you don't want to see your fund stolen. Code version control make it much easier to cross-check what actually run. For extra security, unplug your Internet access while generating your wallet.
@@ -6228,16 +6232,6 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height:

-
-
Supported currencies :
-
-
- -
- Auroracoin, Bitcoin, Blackcoin, BBQcoin, Catcoin, Dogecoin, Feathercoin, Litecoin, Marscoin, NameCoin, Peercoin, Primecoin, Reddcoin, Topcoin, Vertcoin.
-
-
-
-
Security Checklist :
@@ -9487,6 +9481,16 @@ for(i = 0; i < janin.currencies.length; i++) {
options += ">"+janin.currencies[i].name+"";
}
select.innerHTML = options;
+// populate supported currency list
+var supportedcurrencies = document.getElementById("supportedcurrencies");
+var currencieslist = "";
+for(i = 0; i < janin.currencies.length; i++) {
+ if(janin.currencies[i].donate == null)
+ continue;
+ currencieslist += "
"+janin.currencies[i].name+" ";
+}
+supportedcurrencies.innerHTML = currencieslist;
// populate donate list
document.getElementById("donateqrcode").style.display = "none";
var donatelist = document.getElementById("donatelist");
diff --git a/src/index.html b/src/index.html
index 971a6db..52e9f35 100644
--- a/src/index.html
+++ b/src/index.html
@@ -171,9 +171,13 @@
-
+
+
+
Supported currencies :
+
+
Step 0. Follow the security checklist recommendation
First step is to download this website from Github and open the index.html file directly from your computer. It's just too easy to sneak some evil code in the 6000+ lines of javascript to leak your private key, and you don't want to see your fund stolen. Code version control make it much easier to cross-check what actually run. For extra security, unplug your Internet access while generating your wallet.
@@ -271,16 +275,6 @@

-
-
Supported currencies :
-
-
- -
- Auroracoin, Bitcoin, Blackcoin, BBQcoin, Catcoin, Dogecoin, Feathercoin, Litecoin, Marscoin, NameCoin, Peercoin, Primecoin, Reddcoin, Topcoin, Vertcoin.
-
-
-
-
Security Checklist :
diff --git a/src/ninja.onload.js b/src/ninja.onload.js
index 5e6432e..b30f10b 100644
--- a/src/ninja.onload.js
+++ b/src/ninja.onload.js
@@ -32,6 +32,16 @@ for(i = 0; i < janin.currencies.length; i++) {
options += ">"+janin.currencies[i].name+"";
}
select.innerHTML = options;
+// populate supported currency list
+var supportedcurrencies = document.getElementById("supportedcurrencies");
+var currencieslist = "";
+for(i = 0; i < janin.currencies.length; i++) {
+ if(janin.currencies[i].donate == null)
+ continue;
+ currencieslist += "
"+janin.currencies[i].name+" ";
+}
+supportedcurrencies.innerHTML = currencieslist;
// populate donate list
document.getElementById("donateqrcode").style.display = "none";
var donatelist = document.getElementById("donatelist");