1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-04 10:19:24 +02:00
Oinktube/plugin/YPTWallet/script.js
2020-12-03 12:32:40 -03:00

8 lines
No EOL
226 B
JavaScript

function updateYPTWallet() {
$.ajax({
url: webSiteRootURL + 'plugin/YPTWallet/getBalance.json.php',
success: function (response) {
$('.walletBalance').text(response.balance);
}
});
}