From 3f68e221937cd45836a4fdaee3d33e1e1eb55ac6 Mon Sep 17 00:00:00 2001 From: Alexander Buzin Date: Sun, 5 Feb 2017 14:43:49 +0200 Subject: [PATCH] Add a comment with a link to PR --- src/core/Clock.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/Clock.js b/src/core/Clock.js index b37e6966c9..9ae10d0e28 100644 --- a/src/core/Clock.js +++ b/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; -- GitLab