mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 10:19:24 +02:00
8 lines
No EOL
226 B
JavaScript
8 lines
No EOL
226 B
JavaScript
function updateYPTWallet() {
|
|
$.ajax({
|
|
url: webSiteRootURL + 'plugin/YPTWallet/getBalance.json.php',
|
|
success: function (response) {
|
|
$('.walletBalance').text(response.balance);
|
|
}
|
|
});
|
|
} |