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