12345678910111213141516171819202122232425262728293031 |
- "use strict";
- var url = decodeURIComponent(location.search.slice(1));
- var historyState = decodeURIComponent(location.hash.slice(1));
- historyState = historyState === "undefined" ? null : JSON.parse(historyState);
- history.replaceState(historyState, null, url);
- location.reload();
|