We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4d596a commit daf5dbeCopy full SHA for daf5dbe
benchmark/benchmark.js
@@ -37,6 +37,12 @@ window.onload = function() {
37
return origFileClose.apply(this, arguments);
38
});
39
40
+ if (!Date.now) {
41
+ Date.now = function now() {
42
+ return new Date().getTime();
43
+ };
44
+ }
45
+
46
function saveToLively(contents) {
47
var address = (window.google &&
48
google.loader &&
@@ -45,6 +51,8 @@ window.onload = function() {
51
contents = navigator.userAgent + "\n" +
52
address.city + "\n" +
53
address.country + "\n" +
54
+ Date.now() + "\n" +
55
+ Squeak.vmVersion + "\n" +
56
contents;
49
57
var oReq = new XMLHttpRequest();
50
58
oReq.open(
0 commit comments