提交 f213ffff 编写于 作者: D Duane Nykamp

Account for getBoundingClientRect returning read-only elements.

上级 566366fc
......@@ -85,11 +85,13 @@ THREE.TrackballControls = function ( object, domElement ) {
} else {
this.screen = this.domElement.getBoundingClientRect();
var box = this.domElement.getBoundingClientRect();
// adjustments come from similar code in the jquery offset() function
var d = this.domElement.ownerDocument.documentElement
this.screen.left += window.pageXOffset - d.clientLeft
this.screen.top += window.pageYOffset - d.clientTop
var d = this.domElement.ownerDocument.documentElement;
this.screen.left = box.left + window.pageXOffset - d.clientLeft;
this.screen.top = box.top + window.pageYOffset - d.clientTop;
this.screen.width = box.width;
this.screen.height = box.height;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册