mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:11:08 +08:00
Abort controller fallback for IE
This commit is contained in:
parent
abbd38f69c
commit
2ab56b22d1
@ -370,7 +370,15 @@ export class PreviewWeb<TFramework extends AnyFramework> {
|
||||
}) {
|
||||
const { id, applyLoaders, unboundStoryFn, runPlayFunction } = story;
|
||||
|
||||
const controller = new AbortController();
|
||||
// IE11 doesn't support AbortController, so we either need to polyfill or just not support it
|
||||
const controller = AbortController
|
||||
? new AbortController()
|
||||
: {
|
||||
signal: { aborted: false },
|
||||
abort() {
|
||||
this.signal.aborted = true;
|
||||
},
|
||||
};
|
||||
let initialRenderPhase: InitialRenderPhase = 'init';
|
||||
let renderContext: RenderContext<TFramework>;
|
||||
const initialRender = async () => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user