Is it possible to add a button into the scene?

I have included the examples in the Collection of examples from discourse.threejs.org.
see discourse.threejs.hofk.de

You get an error in the console ( Button example, but it works ):
THREE.OrbitControls: “document” should not be used as the target “domElement”. Please use “renderer.domElement” instead.

I corrected it in the copy.

//var controls = new THREE.OrbitControls(camera, document); // error in console … Please use “renderer.domElement” instead.
var controls = new THREE.OrbitControls(camera, renderer.domElement); // changed hofk

Weird. :thinking:
Browser: With Firefox the click only works when I open the console.
With Chrome, Opera immediately.