فهرست منبع

callback was moved from some function

Pavel Leshkovich 6 سال پیش
والد
کامیت
00a8e03ce2
1فایلهای تغییر یافته به همراه4 افزوده شده و 2 حذف شده
  1. 4 2
      examples/js/controls/OrbitControls.js

+ 4 - 2
examples/js/controls/OrbitControls.js

@@ -429,11 +429,13 @@ THREE.OrbitControls = function ( object, domElement ) {
 
 	function isPanEvent( event ) {
 
-		return scope.panKeys.some( function ( key ) {
+		var hasKey = function ( key ) {
 
 			return event[ key ];
 
-		} );
+		};
+
+		return scope.panKeys.some( hasKey );
 
 	}