File tree 3 files changed +9
-4
lines changed
playground/configs/templates
3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
- All notable changes to the "vue3-easter-egg-trigger" plugin will be documented in this file.
2
+ All notable changes to the "vue-easter-egg-trigger" plugin will be documented in this file.
3
+
4
+ ## v3.0.2
5
+ 2024-01-19
6
+ [ main] (@webdevnerdstuff )
7
+ * Fix issue when only using single key press
3
8
4
9
## v3.0.1
5
10
2024-01-17
Original file line number Diff line number Diff line change 38
38
color =" primary"
39
39
:disabled =" clickClassTriggered"
40
40
>
41
- Triggered by Class
41
+ Triggered by Class (3 clicks)
42
42
</v-btn >
43
43
44
44
<VEasterEggTrigger
53
53
class =" callback-triggered"
54
54
:class =" callbackTriggeredClass"
55
55
>
56
- Class element clicked
56
+ Class element clicked 3 times
57
57
</div >
58
58
</v-col >
59
59
Original file line number Diff line number Diff line change @@ -105,7 +105,6 @@ function checkPattern(e: Event | MouseEvent | KeyboardEvent): void {
105
105
}
106
106
107
107
emitEvent ();
108
- return ;
109
108
}
110
109
111
110
reset ();
@@ -139,6 +138,7 @@ function checkTarget(): void {
139
138
140
139
// Reset //
141
140
function reset(): void {
141
+
142
142
// Reset timeout and clear input keys //
143
143
timeout = setTimeout (() => {
144
144
clearTimeout (timeout );
You can’t perform that action at this time.
0 commit comments