Track
Boys Track Place 7th at State Meet!
Congrats to Malcolm Rencher (Long Jump) and the boys 4×100 relay on placing 7th at the State Meet. #WestPride
— Lakota West Track & Field (@WestTrackField) June 1, 2019
Malcolm Rencher 7th place finish at the State Meet. pic.twitter.com/qNcag0AoPK
— Lakota West Track & Field (@WestTrackField) June 1, 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 (_) {} })();