mc.js 253 B

123456
  1. window.top.addEventListener('popstate', function(event) {
  2. if(!!event.state) window.location = event.state;
  3. });
  4. $(document).ready(function() {
  5. window.top.history.replaceState(window.location.pathname, null, '/mc' + window.location.pathname);
  6. });