mirror of
https://github.com/seigler/dash-website
synced 2025-07-27 07:16:10 +00:00
fixed network page and scripts
This commit is contained in:
parent
c3111a3ade
commit
9fb6c4e19d
2 changed files with 7 additions and 10 deletions
|
@ -86,7 +86,7 @@ description: pages.currency.description
|
||||||
<a href="https://explorer.dashninja.pl/chain/Dash" target="_blank" class="btn-blue-solid">DashNinja</a>
|
<a href="https://explorer.dashninja.pl/chain/Dash" target="_blank" class="btn-blue-solid">DashNinja</a>
|
||||||
<a href="https://bitinfocharts.com/darkcoin/explorer/" target="_blank" class="btn-blue-solid">BitInfoCharts</a>
|
<a href="https://bitinfocharts.com/darkcoin/explorer/" target="_blank" class="btn-blue-solid">BitInfoCharts</a>
|
||||||
</div>
|
</div>
|
||||||
<table id="blocks">
|
<table id="blocks" width="100%">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Height</th>
|
<th>Height</th>
|
||||||
|
|
|
@ -3,23 +3,20 @@
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
|
|
||||||
var siteApi = window.globals.siteApi || '/api/v1';
|
var siteApi = window.globals.siteApi || '/api/v1';
|
||||||
var marketCapApi = 'https://www.coincap.io/front/'
|
var marketCapApi = 'https://www.coincap.io/front/';
|
||||||
|
|
||||||
if ($('#marketcap_count').length) {
|
if ($('#marketcap_count').length) {
|
||||||
|
|
||||||
function results(json){
|
$.ajax({
|
||||||
|
url: marketCapApi,
|
||||||
|
dataType: "jsonp",
|
||||||
|
}).done(function(json) {
|
||||||
var $dash="DASH",
|
var $dash="DASH",
|
||||||
result = json.filter(function(itm){
|
result = json.filter(function(itm){
|
||||||
return $dash.indexOf(itm.short) > -1;
|
return $dash.indexOf(itm.short) > -1;
|
||||||
});
|
});
|
||||||
var num = result[0].mktcap.toFixed(0).replace(/(\d)(?=(\d\d\d)+(?!\d))/g, "$1,");
|
var num = result[0].mktcap.toFixed(0).replace(/(\d)(?=(\d\d\d)+(?!\d))/g, "$1,");
|
||||||
$('#marketcap_count').text(num);
|
$('#marketcap_count').text(num);
|
||||||
}
|
|
||||||
|
|
||||||
$.ajax({
|
|
||||||
url: marketCapApi,
|
|
||||||
dataType: "jsonp",
|
|
||||||
jsonpCallback: "results"
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -73,7 +70,7 @@
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($('#masternodes_count').length) {
|
if ( $('#masternodes_count').length && $('#masternodes_count').length ) {
|
||||||
|
|
||||||
// Get the current number of masternodes.
|
// Get the current number of masternodes.
|
||||||
$.ajax({
|
$.ajax({
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue