File size: 1,176 Bytes
03c0050 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
// Download Functions
function downloadFundamentalReport() {
const button = event.target;
const originalText = button.innerHTML;
button.innerHTML = '<i class="fas fa-spinner fa-spin me-2"></i>Mengunduh...';
button.disabled = true;
setTimeout(() => {
button.innerHTML = originalText;
button.disabled = false;
alert('Laporan Fundamental BBRI berhasil diunduh!');
}, 2000);
}
function downloadOHLCReport() {
const button = event.target;
const originalText = button.innerHTML;
button.innerHTML = '<i class="fas fa-spinner fa-spin me-2"></i>Mengunduh...';
button.disabled = true;
setTimeout(() => {
button.innerHTML = originalText;
button.disabled = false;
alert('Laporan OHLC BBRI berhasil diunduh!');
}, 2000);
}
function downloadTechnicalReport() {
const button = event.target;
const originalText = button.innerHTML;
button.innerHTML = '<i class="fas fa-spinner fa-spin me-2"></i>Mengunduh...';
button.disabled = true;
setTimeout(() => {
button.innerHTML = originalText;
button.disabled = false;
alert('Laporan Analisis Teknikal BBRI berhasil diunduh!');
}, 2000);
} |