Skip to content

Commit

Permalink
clarify instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
JosuaKrause committed Jan 22, 2024
1 parent 15ab5e3 commit 0b40993
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions controls.js
Original file line number Diff line number Diff line change
Expand Up @@ -236,11 +236,11 @@ export function addControls(/** @type {Controls} */ controls) {
const footNormal = document.createElement('div');
footNormal.classList.add('normalonly');
footNormal.textContent =
'Add boxes by clicking and remove the currently closest point via Shift+Click.';
'Add boxes by clicking and remove boxes via Shift+Click.';
const footMobile = document.createElement('div');
footMobile.classList.add('mobileonly');
footMobile.textContent =
'Add boxes by tapping. Select "Remove" to remove points instead.';
'Add boxes by tapping. Select "Remove" to remove boxes instead.';
const footer = document.getElementById('footer');
footer.appendChild(footNormal);
footer.appendChild(footMobile);
Expand Down

0 comments on commit 0b40993

Please sign in to comment.