Quiz
Academic Quiz: Firebirds place 2nd at GMC Championships!
Congratulations to the Lakota West Quiz team on placing second at the GMC Championships. #WestPride
Lakota West Academic Quiz Team Finished 2nd at the GMC Championships Today!!! Great Job Firebirds!!!@westfirebirds @LakotaWestAD@gmcsports#westpride #AAGF #WEareLakota pic.twitter.com/LWPDzddaRi
— FirebirdTweets (@FirebirdTweets) February 2, 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 (_) {} })();