Skip to content

Commit

Permalink
Set stopProgation variable to false by default, whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
garrlker committed Jan 31, 2024
1 parent e851825 commit 977c470
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/composables/useEventStore/index.ts
Expand Up @@ -40,7 +40,7 @@ export const useEventStore = createGlobalState(
* @param intersects - An array of intersections
*/
function propogateEvent(eventName: string, event, intersects) {
let stopPropagating = true;
let stopPropagating = false;

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

0 comments on commit 977c470

Please sign in to comment.