From 3b138f252195b48c430b14a8c11490c79b13d0a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Mur=C3=A9?= Date: Sun, 15 Jun 2014 01:54:33 +0200 Subject: [PATCH] come back of the generated list of supported currency --- index.html | 44 +++++++++++--------------------------------- src/index.html | 34 +--------------------------------- src/ninja.onload.js | 10 ++++++++++ 3 files changed, 22 insertions(+), 66 deletions(-) diff --git a/index.html b/index.html index 4f269cb..20a28eb 100644 --- a/index.html +++ b/index.html @@ -9714,39 +9714,7 @@ h1 { margin: 0px; height: 91px; }
Supported currencies : - +
@@ -13209,6 +13177,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 032f10a..b1ecf32 100644 --- a/src/index.html +++ b/src/index.html @@ -183,39 +183,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/src/ninja.onload.js b/src/ninja.onload.js index 4e3a416..dd9ca9c 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");