X-Git-Url: https://git.r.bdr.sh/rbdr/cologne/blobdiff_plain/aa1e9cffa7461eeb358384537c702a57b3a7755c..adc1a8da06f8af4c06a311ca459de4dcf379f5fd:/lib/cobalt.js diff --git a/lib/cobalt.js b/lib/cobalt.js index 9554a04..17e6948 100644 --- a/lib/cobalt.js +++ b/lib/cobalt.js @@ -27,7 +27,7 @@ } Cobalt.now = function () { - if (typeof performance !== 'undefined') { + if (typeof performance !== 'undefined' && performance.timing) { return performance.timing.navigationStart + performance.now(); } @@ -239,7 +239,7 @@ // Returns the current time in microseconds. now : function () { - if (typeof performance !== 'undefined') { + if (typeof performance !== 'undefined' && performance.timing) { return performance.timing.navigationStart + performance.now(); }