comment js

This commit is contained in:
ody 2025-11-24 14:50:37 +07:00
parent 286f48e200
commit 37ecefe0c5

View File

@ -236,6 +236,7 @@ window.addEventListener('keydown', e=>{
updateUI(); updateUI();
// TOP UP FEATURE
// Tambahkan variabel global untuk top up // Tambahkan variabel global untuk top up
let topUpAmount = 0; let topUpAmount = 0;
let topUpHistory = []; let topUpHistory = [];
@ -361,7 +362,7 @@ window.addEventListener('keydown', e => {
// Modifikasi fungsi updateUI untuk menampilkan informasi top up // Modifikasi fungsi updateUI untuk menampilkan informasi top up
const originalUpdateUI = updateUI; const originalUpdateUI = updateUI;
updateUI = function() { updateUI = function() {
originalUpdateUI(); originalUpdateUI();` []`
updateTopUpBalance(); updateTopUpBalance();
}; };