Merge branch 'bug_9679' into 3.14-master

This commit is contained in:
Jared Camins-Esakov 2013-05-12 09:58:04 -04:00
commit 8a81714721

View file

@ -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>");