Fix bad merge

This commit is contained in:
Michael Shilman 2021-04-10 12:14:37 +08:00
parent 316b500adb
commit 64bccf4b48

View File

@ -169,7 +169,7 @@ export const init: ModuleFn = ({ store, navigate, state, provider, fullAPI, ...r
fullAPI.on(STORY_ARGS_UPDATED, ({ args }) => {
if ('requestIdleCallback' in globalWindow) {
if (handleOrId) globalWindow.cancelIdleCallback(handleOrId);
handleOrId = globalWindow.requestIdleCallback(() => updateArgsParam(args), { timeout: 1000 });
handleOrId = globalWindow.requestIdleCallback(updateArgsParam, { timeout: 1000 });
} else {
if (handleOrId) clearTimeout(handleOrId);
setTimeout(updateArgsParam, 100);