Sorry, but you either have no stories or none are selected somehow.
If the problem persists, check the browser console, or the terminal you've run Storybook from.
options
to use while unmarking
These options can be used with any of the markers. For ex:
...and also with the useMarker
hook for advanced usage by passing an object
of options
as the first argument of marker.unmark()
method:
Option | Type | Default | Description |
---|---|---|---|
element | string | "" | Will remove only marked elements with this specific element |
className | string | "" | Will remove only marked elements with this specific class name |
exclude | array | [ ] | An array with exclusion selectors. These elements will be ignored. Example: "filter": ["h1", ".ignore"] |
iframes | boolean | false | Whether to search also inside iframes. If you don't have permissions to some iframes (e.g. because they have a different origin) they will be silently skipped. If you don't want to search inside specific iframes (e.g. facebook share), you can pass an exclude selector that matches these iframes |
iframesTimeout | number | 5000 | The maximum ms to wait for a load event before skipping an iframe. Especially important when there's no internet connection or a browser "offline" mode is enabled and an iframe has an online src – then the load event is never fired |
done | function | A callback function after all marked elements were removed | |
debug | boolean | false | Set this option to true if you want to log messages |
log | object | console | Log messages to a specific object (only if debug is true) |