Skip to content

Commit

Permalink
correctly compute quadrant values, fix #168
Browse files Browse the repository at this point in the history
  • Loading branch information
mskocik committed Mar 17, 2024
1 parent 97924b0 commit c6ed934
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/lib/components/Time.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,6 @@
const rect = clockEl.getBoundingClientRect();
const clientX = e.clientX - rect.left;
const clientY = e.clientY - rect.top;
const cntX = 130, cntY = 130;
const cntX = 110, cntY = 110;
let quadrant = null;
if (clientX > cntX) {
Expand Down

0 comments on commit c6ed934

Please sign in to comment.