diff --git a/src/util/ticker.js b/src/util/ticker.js index a3a9533e..598fe610 100644 --- a/src/util/ticker.js +++ b/src/util/ticker.js @@ -14,7 +14,7 @@ function now(){ // http://updates.html5rocks.com/2012/05/requestAnimationFrame-API-now-with-sub-millisecond-precision - return (perf && perf.now) ? + return (perf && perf.now && perf.timing) ? (perf.now() + perf.timing.navigationStart) : Date.now(); }