Athletic Dept.
Battle brewing among Lakota, Middletown and Mason schools
Article found at journal-news.com
Lakota’s Stuff The Bus campaign kicks off Friday at the East/West football game. From there, the buses will make stops at all of Lakota’s school buildings, wrapping up on Oct. 26.
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 (_) {} })();