Lines 117-128
Link Here
|
117 |
// Show or hide holds notes |
117 |
// Show or hide holds notes |
118 |
$(".shownotes").click(function(){ |
118 |
$(".shownotes").click(function(){ |
119 |
biblioNum = suffixOf($(this).attr("id"), "_"); |
119 |
biblioNum = suffixOf($(this).attr("id"), "_"); |
120 |
if( $("#notesrow_"+biblioNum).is(":visible") ) { |
120 |
$("#notesrow_"+biblioNum).toggle(); |
121 |
$("#notesrow_"+biblioNum).hide(); |
|
|
122 |
} |
123 |
else { |
124 |
$("#notesrow_"+biblioNum).show(); |
125 |
} |
126 |
}); |
121 |
}); |
127 |
|
122 |
|
128 |
// When 'Place Hold' button is clicked |
123 |
// When 'Place Hold' button is clicked |
129 |
- |
|
|