Skip to content

Commit 580029d

Browse files
committed
Set stopProgation variable to false by default, whoops
1 parent 1a491da commit 580029d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/composables/useEventStore/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export const useEventStore = createGlobalState(
4040
* @param intersects - An array of intersections
4141
*/
4242
function propogateEvent(eventName: string, event, intersects) {
43-
let stopPropagating = true;
43+
let stopPropagating = false;
4444

4545
// Loop through all intersected objects and call their event handler
4646
if (intersects.length) {

0 commit comments

Comments
 (0)