Spaces:
Running
Running
File size: 1,017 Bytes
cdacbba | 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 | // Shared functions across all pages
// Initialize tooltips
function initTooltips() {
const tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]'));
tooltipTriggerList.map(function (tooltipTriggerEl) {
return new bootstrap.Tooltip(tooltipTriggerEl);
});
}
// Format Thai date
function formatThaiDate(dateString) {
if (!dateString) return '';
const date = new Date(dateString);
const options = { day: 'numeric', month: 'numeric', year: 'numeric' };
return date.toLocaleDateString('th-TH', options);
}
// Toggle mobile menu
function toggleMobileMenu() {
const mobileMenu = document.getElementById('mobile-menu');
mobileMenu.classList.toggle('hidden');
}
// Initialize the app
document.addEventListener('DOMContentLoaded', function() {
initTooltips();
// Set current year in footer
document.getElementById('current-year').textContent = new Date().getFullYear() + 543;
console.log('MedTrackRx initialized');
}); |