mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-24 06:59:52 +01:00
wombat: fix Date overrides, ensure use of overriden functions
This commit is contained in:
parent
3808609fbc
commit
b92d75ff9b
@ -760,7 +760,7 @@ var wombat_internal = function(window) {
|
|||||||
//var timezone = new Date().getTimezoneOffset() * 60 * 1000;
|
//var timezone = new Date().getTimezoneOffset() * 60 * 1000;
|
||||||
// Already UTC!
|
// Already UTC!
|
||||||
var timezone = 0;
|
var timezone = 0;
|
||||||
var timediff = Date.now() - (timestamp - timezone);
|
var timediff = window.Date.now() - (timestamp - timezone);
|
||||||
|
|
||||||
window.__Date = window.Date;
|
window.__Date = window.Date;
|
||||||
window.__Date_now = window.Date.now;
|
window.__Date_now = window.Date.now;
|
||||||
@ -773,7 +773,7 @@ var wombat_internal = function(window) {
|
|||||||
// seem to like undefined args, so must explicitly
|
// seem to like undefined args, so must explicitly
|
||||||
// call constructor for each possible args 0..7
|
// call constructor for each possible args 0..7
|
||||||
if (A === undefined) {
|
if (A === undefined) {
|
||||||
return new Date(window.Date.now());
|
return new Date(Date.now());
|
||||||
} else if (B === undefined) {
|
} else if (B === undefined) {
|
||||||
return new Date(A);
|
return new Date(A);
|
||||||
} else if (C === undefined) {
|
} else if (C === undefined) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user