We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6957918 commit ca55c10Copy full SHA for ca55c10
src/app/components/History.tsx
@@ -140,8 +140,9 @@ function History(props: any) {
140
});
141
142
// here we the node circle is created and given a radius size, we are also giving it a mouseover and onClick functionality
143
- // mouseover will highlight the node while onClick will dispatch changeSlider and changeView actions. This will act as a timeJump request.
144
- //
+ // mouseover will highlight the node
+ // the onCLick of a selected node will dispatch changeSlider and changeView actions. This will act as a timeJump request.
145
+ // further optimization would improve the onclick feature, onclick seems to only register on the lower half of the node
146
node
147
.append('circle')
148
.attr('r', 13)
0 commit comments