Skip to content

Commit

Permalink
wombat: add missing return from overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
ikreymer committed Aug 29, 2017
1 parent 72a6969 commit f4025e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pywb/static/wombat.js
Original file line number Diff line number Diff line change
Expand Up @@ -2194,7 +2194,7 @@ var _WBWombat = function($wbwindow, wbinfo) {
var orig = prototype[method];

function deproxy() {
orig.apply(proxy_to_obj(this), arguments);
return orig.apply(proxy_to_obj(this), arguments);
}

prototype[method] = deproxy;
Expand All @@ -2210,7 +2210,7 @@ var _WBWombat = function($wbwindow, wbinfo) {

function deproxy() {
arguments[0] = proxy_to_obj(arguments[0]);
orig.apply(this, arguments);
return orig.apply(this, arguments);
}

prototype[method] = deproxy;
Expand Down

0 comments on commit f4025e6

Please sign in to comment.