Alumni

Alumni: Troy Wagner has outstanding pitching performance over Wittenberg!

Article found at onusports.com

Keep up the Hard Work Troy!  Troy Wagner, West Class of 2016, All GMC 2nd team . #WestPride

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 (_) {} })();

Popular Posts