From 98843a2551a6cb741dc7568ae4939a0f777b7ee1 Mon Sep 17 00:00:00 2001 From: Ilya Kreymer Date: Tue, 29 Dec 2015 16:17:39 -0800 Subject: [PATCH] wombat: call reload() on actual location, possible fix related to #164 --- pywb/static/wombat.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pywb/static/wombat.js b/pywb/static/wombat.js index 7a1fd14f..f3fb754a 100644 --- a/pywb/static/wombat.js +++ b/pywb/static/wombat.js @@ -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];