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