We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 09f2fb2 + a07798d commit bcc93c9Copy full SHA for bcc93c9
src/tick.js
@@ -50,7 +50,8 @@
50
51
function InternalTimeline() {
52
this._players = [];
53
- this.currentTime = window.performance ? performance.now() : 0;
+ // Android 4.3 browser has window.performance, but not window.performance.now
54
+ this.currentTime = window.performance && performance.now ? performance.now() : 0;
55
};
56
57
InternalTimeline.prototype = {
0 commit comments