X-Git-Url: https://git.r.bdr.sh/rbdr/cologne/blobdiff_plain/aa1e9cffa7461eeb358384537c702a57b3a7755c..e16e2dbf4c0911a5d5e8d1d56bb1c674b37fc161:/lib/cobalt.js diff --git a/lib/cobalt.js b/lib/cobalt.js index 9554a04..58a305c 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,15 +239,7 @@ // Returns the current time in microseconds. now : function () { - if (typeof performance !== 'undefined') { - return performance.timing.navigationStart + performance.now(); - } - - if (typeof Microtime !== 'undefined') { - return Microtime.nowDouble() * 1000; - } - - return Date.now(); + this.constructor.now(); }, _levelString : function (level) {