How can I disable the Arcball controller's double click event?

I didn’t find a way to disable the double click event which would moving the object’s point of interest in the center of the virtual trackball. Thanks!

Is the double click disabled when you clear _maxDownTime and _maxInterval like this:

var controls = new ArcballControls( camera, renderer.domElement, scene );
    controls._maxDownTime = 0;
    controls._maxInterval = 0;

thanks,bro.