Полноэкранный режим
Просмотров PDF (Rus): 435
';
}
html += '
';
$("#tab6").html(html);
$("#tab-button6 a").text("Cited By ("+data.length+")");
$("#tab-button6").show();
});
}
function createScopusCitations(){
var url = "https://www.energyret.ru/jour/article/scopusCitations/1625";
$.get(url, function(data){
if (!data || !data.length) return;
var html = '
';
html+= '
Scopus Cited
';
for (var i=0; i
';
html+= ''+data[i]["title"]+'
';
html+= ''+data[i]["authors"]+'
';
html+= '';
if (data[i]["journal"]) html += data[i]["journal"]+', ';
if (data[i]["year"]) html += data[i]["year"]+'; ';
if (data[i]["issue"]) html += data[i]["issue"];
if (data[i]["volume"]) html += data[i]["volume"];
if (data[i]["first_page"]) html += ":"+data[i]["first_page"];
html+= ";";
html+= 'DOI: '+data[i]["doi"]+'
';
html+= '';
}
html += '
';
$("#tab8").html(html);
$("#tab-button8 a").text("Scopus Cited ("+data.length+")");
$("#tab-button8").show();
});
}
function createMetricChart(){
var url = "https://www.energyret.ru/jour/article/metrics/1625";
$.get(url, function(data){
console.log(1);
var ctx = document.getElementById('metricChart');
console.log(2);
if (!data || !data['months'].length) return;
var chart_data = {
labels: data['months'],
datasets: [{
label: 'Статистика',
data: data['counts'],
fill: false,
borderColor: '#ffb400',
tension: 0.1
}]
};
new Chart(ctx, {
type: "line",
data: chart_data
});
});
}
$(document).ready(function(){
var doi = $("meta[name='DC.Identifier.DOI']").attr("content");
if (!doi || doi=="undefined") {$("a.block-link").remove()}
if ($(".fullHTML").length) createCitationLinks();
createCitedBy();
createScopusCitations();
/*createMetricChart();*/
$('#qrcode-thumb').qrcode({width:25, height:25, text:window.location.href} );
$('#qrcode').qrcode({width:150, height:150, background: "#f2f2f2", text:window.location.href} );
});