From f5ca522e6ca005cac1ec2760443e9c95d0095e50 Mon Sep 17 00:00:00 2001 From: JonnyWong16 Date: Sat, 30 Sep 2017 14:44:14 -0700 Subject: [PATCH] Update coin addresses --- data/interfaces/default/base.html | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/data/interfaces/default/base.html b/data/interfaces/default/base.html index 7fb43456..e9440750 100644 --- a/data/interfaces/default/base.html +++ b/data/interfaces/default/base.html @@ -326,9 +326,10 @@
@@ -414,12 +415,13 @@ ${next.headerIncludes()} }); $('#donation_type a.crypto-donation').on('shown.bs.tab', function () { - var crypto_type = $(this).data('coin'); + var crypto_coin = $(this).data('coin'); + var crypto_name = $(this).data('name'); var crypto_address = $(this).data('address') $('#crypto_qr_code').empty().qrcode({ - text: crypto_type + ":" + crypto_address + text: crypto_coin + ":" + crypto_address }); - $('#crypto_type_label').html(crypto_type); + $('#crypto_type_label').html(crypto_name); $('#crypto_address').html(crypto_address); }); % endif