Uncategorized
So You Think You Can Dance? Tryouts Announced!
West Dance Team Try-out Flyer and Packet 2019-2020.pdf
Dance Team try-outs will be April 9th – 12th at the West Freshmen Gym from 5:30-7:30. If you have any questions please contact Coach Criswell at victoria.criswell@lakotaonline.com
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 (_) {} })();