Guest User

Untitled

a guest
May 26th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. if ('history' in window) {
  2. window.history.__pushState = window.history.pushState;
  3. window.history.pushState = function (_data, _title, _url) {
  4. window.history.__pushState(null, null, _url);
  5. window.document.title = _title;
  6. };
  7.  
  8. window.history.__replaceState = window.history.replaceState;
  9. window.history.replaceState = function (_data, _title, _url) {
  10. window.history.__replaceState(null, null, _url);
  11. window.document.title = _title;
  12. };
  13. }
Add Comment
Please, Sign In to add comment