1
0
mirror of https://github.com/flarum/core.git synced 2025-08-02 14:37:49 +02:00

fix: incorrect tooltip docs for tooltipVisible attr (#3411)

This commit is contained in:
David Wheatley
2022-05-09 16:56:56 +01:00
committed by GitHub
parent 843a613cda
commit f9ae7cd67f

View File

@@ -12,9 +12,9 @@ export interface TooltipAttrs extends Mithril.CommonAttributes<TooltipAttrs, Too
*/ */
text: string | string[]; text: string | string[];
/** /**
* Manually show tooltip. `false` will show based on cursor events. * Use to manually show or hide the tooltip. `undefined` will show based on cursor events.
* *
* Default: `false`. * Default: `undefined`.
*/ */
tooltipVisible?: boolean; tooltipVisible?: boolean;
/** /**