14 lines
322 B
JavaScript
14 lines
322 B
JavaScript
// Path: Loader/scripts/handoff.js
|
|
|
|
import { LOADER_HANDOFF_DELAY_MS } from "./config.js";
|
|
|
|
export const scheduleHandoff = (target, onBeforeHandoff) => {
|
|
window.setTimeout(() => {
|
|
if (typeof onBeforeHandoff === "function") {
|
|
onBeforeHandoff();
|
|
}
|
|
|
|
window.location.assign(target);
|
|
}, LOADER_HANDOFF_DELAY_MS);
|
|
};
|