|
Lines 21-31
$(document).ready(function() {
Link Here
|
| 21 |
}); |
21 |
}); |
| 22 |
$("#selectwithoutitems").click(function(e){ |
22 |
$("#selectwithoutitems").click(function(e){ |
| 23 |
e.preventDefault(); |
23 |
e.preventDefault(); |
| 24 |
$("#biblios").checkCheckboxes(":input[data-items='0']"); |
24 |
$("#biblios").checkCheckboxes(":input[data-items='0']:not(:disabled)"); |
| 25 |
}); |
25 |
}); |
| 26 |
$("#selectnotreserved").click(function(e){ |
26 |
$("#selectnotreserved").click(function(e){ |
| 27 |
e.preventDefault(); |
27 |
e.preventDefault(); |
| 28 |
$("#biblios").checkCheckboxes(":input[data-reserves='0']"); |
28 |
$("#biblios").checkCheckboxes(":input[data-reserves='0']:not(:disabled)"); |
| 29 |
|
29 |
|
| 30 |
}); |
30 |
}); |
| 31 |
$("#clearlinkedtobiblio").click(function(e){ |
31 |
$("#clearlinkedtobiblio").click(function(e){ |
| 32 |
- |
|
|