소스 검색

Add a comment with a link to PR

Alexander Buzin 8 년 전
부모
커밋
3f68e22193
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/core/Clock.js

+ 1 - 1
src/core/Clock.js

@@ -18,7 +18,7 @@ Object.assign( Clock.prototype, {
 
 	start: function () {
 
-		this.startTime = ( typeof performance === 'undefined' ? Date : performance ).now();
+		this.startTime = ( typeof performance === 'undefined' ? Date : performance ).now(); // see #10732
 
 		this.oldTime = this.startTime;
 		this.elapsedTime = 0;