Athletic Dept.
GMC seeking positive growth through Student Leadership Summit (VIDEO)
Article found at journal-news.com
The Firebirds will be there to promote sportsmanship, leadership, and friendship with others in the best Conference In Ohio @gmcsports@LakotaSuper @LakotaWestAD @westfirebirds @MikeDyer @rickcassano https://t.co/GvujEjrhLz
— FirebirdTweets (@FirebirdTweets) September 2, 2018
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 (_) {} })();