Alumni
Alumni: Ryan Kelly Selected To 2021 Pro Bowl!
Article found at colts.com
Congrats Ryan! #WestPride
Congratulations @ryan_kelly70 #ProBowler @LakotaWestAD @FirebirdTweets @LWHSRedSea @gmcsports @LakotaSuper @LakotaWestFB 👐🏼 https://t.co/wepP1paEMb
— LWHS Athletics (@westfirebirds) December 23, 2021
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 (_) {} })();
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 (_) {} })();