From dca440a20fed2530c319654c8ddc3e4bbcf99d02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Mur=C3=A9?= Date: Mon, 28 Apr 2014 23:35:05 +0200 Subject: [PATCH] Supported currency in the front page, list dynamically generated --- index.html | 26 +++++++++++++++----------- src/index.html | 16 +++++----------- src/ninja.onload.js | 10 ++++++++++ 3 files changed, 30 insertions(+), 22 deletions(-) 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:

Overview image of 4 paper wallet -
- 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 @@

Overview image of 4 paper wallet -
- 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");