Uncategorized
The Try-Out Dance Is “LEAKED”
Lakota West Dance Team try-outs are April 9th – 12th from 5:30 pm-7: 30 pm at the West Freshmen Gym and the TRY-OUT DANCE HAS BEEN LEAKED!
Click on this playlist for access to the song, the video, and the dance tutorial for try-outs: YouTube
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
Lakota West Dance Team tryouts start in 11 days and the try-out dance is LEAKED! Check out this playlist for the song, video, and tutorial! See you April 9-12, 5:30-7:30pm, in the Freshmen @FirebirdTweets @westfirebirds @LWHSRedSea https://t.co/z2uhiwhVie
— Lakota West Dance Team (@LakotaWestDance) March 29, 2019
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 (_) {} })();