Merge branch 'bug_9679' into 3.14-master
This commit is contained in:
commit
8a81714721
1 changed files with 10 additions and 0 deletions
|
@ -397,6 +397,16 @@ function showLess() {
|
|||
document.location = loc;
|
||||
}
|
||||
|
||||
function holdSel() {
|
||||
var items = document.getElementById('records').value;
|
||||
if (items) {
|
||||
parent.opener.document.location = "/cgi-bin/koha/opac-reserve.pl?biblionumbers=" + items;
|
||||
window.close();
|
||||
} else {
|
||||
alert(MSG_NO_RECORD_SELECTED);
|
||||
}
|
||||
}
|
||||
|
||||
function updateBasket(updated_value,target) {
|
||||
if(target){
|
||||
target.$('#basketcount').html("<span>"+updated_value+"</span>");
|
||||
|
|
Loading…
Reference in a new issue