Cpuwin Script
Cpuwin Script
Cpuwin Script
var width = 0;
$("html").on("contextmenu",function(){ return true; });
function _amountSave() {
$.ajax({
type: "POST",
url: ajaxUrl + "ajax.console.php?csrf=" + csrf,
dataType: "json",
data: {
'amount': total
},
beforeSend: function() {
$('#amount-save').hide();
},
success: function (r) {
if (r.error) {
stop = r.error.msg
} else if (r.message) {
total = 0;
second = r.message.time;
$('#total_btc').text(0);
$('#wait-time').show();
$('#wait-time span').text(second);
}
}
})
};