Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
Addressed feedback.
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandon-T committed Mar 31, 2022
1 parent 72d84fa commit f339def
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions Client/Frontend/UserContent/UserScripts/ReadyState.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,8 @@
};

// Hide the pushState trampoline
History.prototype.pushState.toString = function() {
return "function () { [native code] }";
};
History.prototype.pushState.toString = pushState.toString;

// Hide the replaceState trampoline
History.prototype.replaceState.toString = function() {
return "function () { [native code] }";
};
History.prototype.replaceState.toString = replaceState.toString;
})();

0 comments on commit f339def

Please sign in to comment.