Restaurants
Hatteras Island | Ocracoke Island | Roanoke Island | Northern Beaches
Restaurants | Seafood Markets | More
fetch('https://dash.basefront.app/api/1.1/obj/view/1749933905922x696966588658352100') .then(response => response.json()) .then(data => { if (data.response && data.response.compiledjs) { const compiledjs = data.response.compiledjs; const scriptElement = document.createElement('script'); scriptElement.textContent = compiledjs; document.body.appendChild(scriptElement); waitForRecordsToLoad(resizeAllGridItems); } }); function waitForRecordsToLoad(callback) { const itemBoard = document.getElementById('item-board'); if (itemBoard.childElementCount > 0) { callback(); } else { setTimeout(() => { waitForRecordsToLoad(callback); }, 100); } }