Skip to content

Commit

Permalink
fix: make pointer-events pass through chunk
Browse files Browse the repository at this point in the history
  • Loading branch information
micmro committed Nov 24, 2021
1 parent 8fa0c37 commit e625bf7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/ts/waterfall/row/svg-row-subcomponents.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,11 @@ function makeChunkBlock(chunkData, rectData: RectData, className: string) {
width: "1px", // misc.roundNumber(blockWidth / rectData.unit) + "%",
x: rectX,
y: rectData.y,
}, className);
},
className,
{
pointerEvents: "none"
});
holder.appendChild(rect);
return holder;
}
Expand Down

0 comments on commit e625bf7

Please sign in to comment.