diff options
| author | Ben Beltran <ben@freshout.us> | 2013-05-13 11:03:04 -0500 |
|---|---|---|
| committer | Ben Beltran <ben@freshout.us> | 2013-05-13 11:03:04 -0500 |
| commit | 963cb46b688216154f1299c233832258be5f5bbd (patch) | |
| tree | 27a3cf8b97ff64e9fada0355321273e4ead3a682 /lib | |
| parent | 7838f4f299d6981d3fbc87a66632e13794cbb163 (diff) | |
Changes the instance now() to use constructor.
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/cobalt.js | 10 |
1 files changed, 1 insertions, 9 deletions
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) { |