diner-ass-diner food
We started this cart so those with celiac can have the same food experience as anyone would get at a classic diner. Unpretentious, as affordable as possible, and so good you won’t know it’s gluten free.
// Handle touch events for mobile press-and-hold effect document.addEventListener("touchstart", function(event) { var productItem = event.target.closest('.product-item'); if (productItem) { // Add active class on touch start productItem.classList.add('active'); // Optional: Prevent scrolling while the active class is applied (for smoother UX) event.preventDefault(); // Remove the class after touch ends or after a timeout to account for short taps productItem.addEventListener('touchend', function() { productItem.classList.remove('active'); }, { once: true }); // Also remove the class after a delay, in case the user doesn't lift their finger quickly setTimeout(function() { productItem.classList.remove('active'); }, 500); // Adjust the timeout as needed for the press-and-hold duration } }); });
We started this cart so those with celiac can have the same food experience as anyone would get at a classic diner. Unpretentious, as affordable as possible, and so good you won’t know it’s gluten free.