File size: 283 Bytes
aa0a401 |
1 2 3 4 5 6 7 8 9 10 |
// Global utility functions
function handleAPIError(error) {
console.error('API Error:', error);
// Can be expanded for global error handling
}
// Initialize tooltips
document.addEventListener('DOMContentLoaded', () => {
// Any global initialization code can go here
}); |