I am using three.js and dat.gui with a text property.
Also, I have OrbitControls in my scene:
cameraControl = new THREE.OrbitControls(came
You need to pass the dom element you want to listen the events from.
cameraControl = new THREE.OrbitControls(camera,renderer.domElement);
Otherwise OrbitControls adds the events to the document and that conflicts with DAT.GUI.
OrbitControls