We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84c9967 commit 07ee294Copy full SHA for 07ee294
1 file changed
docs/rules/template-mouse-events-have-key-events.md
@@ -19,7 +19,7 @@ This rule **forbids** the following:
19
```gjs
20
<template>
21
<div {{on "mouseover" this.showTooltip}}></div>
22
- <div {{on "mouseleave" this.hideTooltip}}></div>
+ <div {{on "mouseout" this.hideTooltip}}></div>
23
</template>
24
```
25
@@ -28,7 +28,7 @@ This rule **allows** the following:
28
29
30
<div {{on "mouseover" this.showTooltip}} {{on "focus" this.showTooltip}}></div>
31
- <div {{on "mouseleave" this.hideTooltip}} {{on "focusout" this.hideTooltip}}></div>
+ <div {{on "mouseout" this.hideTooltip}} {{on "focusout" this.hideTooltip}}></div>
32
33
34
0 commit comments