|
Lines 669-675
$(document).ready(function(){
Link Here
|
| 669 |
}); |
669 |
}); |
| 670 |
[% END %] |
670 |
[% END %] |
| 671 |
|
671 |
|
| 672 |
$(".cb").click(function(){ |
672 |
$(".cb").change(function(){ |
| 673 |
if ( $(this).is(':checked') == true ) { |
673 |
if ( $(this).is(':checked') == true ) { |
| 674 |
addBibToContext( $(this).val() ); |
674 |
addBibToContext( $(this).val() ); |
| 675 |
} else { |
675 |
} else { |
|
Lines 677-682
$(document).ready(function(){
Link Here
|
| 677 |
} |
677 |
} |
| 678 |
enableCheckboxActions(); |
678 |
enableCheckboxActions(); |
| 679 |
}); |
679 |
}); |
|
|
680 |
$(".details_link a").click(function(e) { |
| 681 |
if ( $(this).hasClass("disabled") == true ) { |
| 682 |
e.preventDefault(); |
| 683 |
alert(MSG_NO_RECORD_SELECTED); |
| 684 |
return false; |
| 685 |
} |
| 686 |
}); |
| 687 |
enableCheckboxActions(); |
| 680 |
|
688 |
|
| 681 |
|
689 |
|
| 682 |
$("#bookbag_form").ready(function(){ |
690 |
$("#bookbag_form").ready(function(){ |
| 683 |
- |
|
|