docs: fix TemplateContentRenderError

- format section isTooltip
- removed trailing closing brackets which caused the error

Signed-off-by: Tobias Kuppens Groot <tkuppensgroo@uos.de>
This commit is contained in:
Tobias Kuppens Groot 2023-01-04 12:59:49 +01:00 committed by Thijs Louisse
parent 6307d606ca
commit 03a90637bd

View file

@ -77,17 +77,14 @@ As specified in the [overlay rationale](./rationale.md) there are only two offic
Since most overlays have interactive content the default is set to dialogs. To get a tooltip, you can add `isTooltip` to the config object. This only works for local placement and it also needs to have `handlesAccessibility` activated to work.
```js preview-story
const tooltipConfig = { ...withTooltipConfig() };
const tooltipConfig = { ...withTooltipConfig() };
return html`
<demo-el-using-overlaymixin id="tooltip" .config=${tooltipConfig}>
<button slot="invoker">
Hover me to open the tooltip!
</button>
<div slot="content" class="demo-overlay">Hello!</div>
</demo-el-using-overlaymixin>
`;
};
return html`
<demo-el-using-overlaymixin id="tooltip" .config=${tooltipConfig}>
<button slot="invoker">Hover me to open the tooltip!</button>
<div slot="content" class="demo-overlay">Hello!</div>
</demo-el-using-overlaymixin>
`;
```
## trapsKeyboardFocus