history.min.js 426 B

1234567891011
  1. console.log('EDLP THEME HISTORY.js');
  2. // var edlp is provided by edlp_ajax.module file
  3. if(edlp.redirect){
  4. console.log('history redirect');
  5. window.localStorage.setItem('edlp_origin_path', edlp.sys_path.replace(/^\//, ''));
  6. window.localStorage.setItem('edlp_origin_url', window.location.pathname);
  7. // redirect to home
  8. window.location.replace(window.location.origin);
  9. }else{
  10. console.log('history do not redirect');
  11. }