From 9a208b47a75269c6406d55787af66323283a8dd1 Mon Sep 17 00:00:00 2001 From: andyfreer Date: Mon, 14 Nov 2016 14:01:17 +0000 Subject: [PATCH] Update: Currency (Network) - open proposal details in new tab --- currency/index.html | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/currency/index.html b/currency/index.html index 58c48c3..410db20 100644 --- a/currency/index.html +++ b/currency/index.html @@ -141,7 +141,6 @@ description: pages.currency.description }); }); - // Get the current number of masternodes. $.ajax({ url: "{{ site.api }}/masternodes/stats/" @@ -155,7 +154,6 @@ description: pages.currency.description $("#masternodes_max").text(masternodes_max); }); - // Get the budget proposals $.ajax({ url: "{{ site.api }}/budgets/" @@ -173,14 +171,11 @@ description: pages.currency.description amount_monthly = formatCurrency(proposal.monthly_amount) will_be_funded = proposal.will_be_funded ? "yes" : "no"; - - - $("#budgets>tbody").append('' + title + '' + owner + '' + votes_yes + '/' + votes_no + '' + required_votes + '' + amount_monthly + '' + will_be_funded + ''); + $("#budgets>tbody").append('' + title + '' + owner + '' + votes_yes + '/' + votes_no + '' + required_votes + '' + amount_monthly + '' + will_be_funded + ''); }); }); - // Get the blockchain info $.ajax({ url: "{{ site.api }}/chain/latestBlocks/"