Skip to content
This repository has been archived by the owner on Apr 15, 2019. It is now read-only.

Commit

Permalink
missing parens
Browse files Browse the repository at this point in the history
  • Loading branch information
bluesmoon committed Mar 16, 2012
1 parent 18d433e commit bf6e642
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion boomerang.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ for the full license text.
// BOOMR function to download and execute before measuring the
// time. We also declare it without `var` so that we can later
// `delete` it. This is the only way that works on Internet Explorer
BOOMR_start = new Date.getTime();
BOOMR_start = new Date().getTime();

// beaconing section
// the parameter is the window
Expand Down
2 changes: 1 addition & 1 deletion zzz_last_plugin.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
BOOMR.t_end = new Date.getTime();
BOOMR.t_end = new Date().getTime();

0 comments on commit bf6e642

Please sign in to comment.