There is a function attached to the ellipse to the left with the following code in it:
function onMouseDown(evt) {
inspect(evt)
}
Notice the name of the function. "onMouseDown" is, obviously, an event triggered when a mouse button is pressed down.
The function itself opens an inspector on the event generated by that event.
Go ahead and click it and look. You'll get an inspector on the event object listing all the properties and functions associated with the onMouseDown event.