1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00

wombat: call reload() on actual location, possible fix related to #164

This commit is contained in:
Ilya Kreymer 2015-12-29 16:17:39 -08:00
parent 1e54f8c8fa
commit 98843a2551

View File

@ -556,7 +556,9 @@ var wombat_internal = function($wbwindow) {
return this._orig_loc.assign(new_url);
}
this.reload = orig_loc.reload;
this.reload = function() {
return this._orig_loc.reload();
}
this.orig_getter = function(prop) {
return this._orig_loc[prop];