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; }
@@ -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.
Supported currencies :
-
+
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");