Advertisement
rudolfbyker

Koha OPACUserJS

Aug 17th, 2023
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. if(window.location.pathname.endsWith('opac-main.pl')) {
  2. window.location = window.location.href.replace('opac-main.pl', 'opac-search.pl');
  3. }
  4. else if (window.location.pathname == '/' || window.location.pathname == '/index.html') {
  5. window.location = '/opac-search.pl';
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement