CoolFace
Apppublic

ed4th/nutraudit-institutional-meal-planner-pro

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
script.js16 linesDownload Raw Back to root
1document.addEventListener('DOMContentLoaded', function() {2    // Add any interactive functionality here if needed3    4    // Example: Make tables more responsive5    const tables = document.querySelectorAll('table');6    tables.forEach(table => {7        const wrapper = document.createElement('div');8        wrapper.className = 'table-wrapper';9        wrapper.style.overflowX = 'auto';10        table.parentNode.insertBefore(wrapper, table);11        wrapper.appendChild(table);12    });13    14    // Initialize feather icons15    feather.replace();16});