浏览代码

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;