|
Lines 1023-1029
function toggleBtnIcon(element, start, replacement) {
Link Here
|
| 1023 |
*/ |
1023 |
*/ |
| 1024 |
function holds_table_patron_page() { |
1024 |
function holds_table_patron_page() { |
| 1025 |
var url = window.location.href; |
1025 |
var url = window.location.href; |
| 1026 |
if (url.indexOf("/circ/circulation.pl?borrowernumber=") !== -1) |
1026 |
if ( |
|
|
1027 |
url.indexOf("/circ/circulation.pl?borrowernumber=") !== -1 || |
| 1028 |
url.indexOf("/circ/circulation.pl?findborrower=") !== -1 |
| 1029 |
) |
| 1027 |
return "circ"; |
1030 |
return "circ"; |
| 1028 |
else if (url.indexOf("/members/moremember.pl?borrowernumber=") !== -1) |
1031 |
else if (url.indexOf("/members/moremember.pl?borrowernumber=") !== -1) |
| 1029 |
return "borrower"; |
1032 |
return "borrower"; |
| 1030 |
- |
|
|