From: Ben Beltran Date: Mon, 13 May 2013 16:03:04 +0000 (-0500) Subject: Changes the instance now() to use constructor. X-Git-Tag: v1.1.0~30 X-Git-Url: https://git.r.bdr.sh/rbdr/cologne/commitdiff_plain/e16e2dbf4c0911a5d5e8d1d56bb1c674b37fc161?hp=500fa8a4162f29e07e1ca4077044681c4992209b Changes the instance now() to use constructor. --- diff --git a/lib/cobalt.js b/lib/cobalt.js index 981aab2..58a305c 100644 --- a/lib/cobalt.js +++ b/lib/cobalt.js @@ -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) {