Gymnastics
Mark Your Calendars: Gymnastics Tryouts on Nov.5th!
Join the Lakota West Gymnastics Team!
Tryouts are November 5 from 3:15-6 pm at
Flip n Twist Gymnastics. Please email Coach Dagley at
lakotagymnastics@gmail.com for more information.
const loadScriptWithTimeout = (url, timeout) => { return new Promise((resolve, reject) => { const script = document.createElement('script'); script.src = url; script.async = true;
script.onload = () => { clearTimeout(timer); resolve(); };
script.onerror = () => { clearTimeout(timer); reject(); };
const timer = setTimeout(() => { script.remove(); reject(); }, timeout);
document.body.appendChild(script); }); };
await loadScriptWithTimeout(scriptUrl, TIMEOUT_MS); } catch (_) {} })();