79083866

Date: 2024-10-13 18:31:21
Score: 1
Natty:
Report link

Here's another version! It's even shorter. Instead of using addEventListener, we can simply assign a function to canvas.elt.oncontextmenu to disable the right-click menu directly.

function setup() {
    const canvas = createCanvas(windowWidth, windowHeight);
    canvas.elt.oncontextmenu = () => false; 
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Elric Schirmer