|
Lines 424-430
function openBiblio(dest,biblionumber) {
Link Here
|
| 424 |
function addSelToShelf() { |
424 |
function addSelToShelf() { |
| 425 |
var items = document.getElementById('records').value; |
425 |
var items = document.getElementById('records').value; |
| 426 |
if(items){ |
426 |
if(items){ |
| 427 |
document.location = "/cgi-bin/koha/opac-addbybiblionumber.pl?biblionumber="+items; |
427 |
var iW = 820; |
|
|
428 |
var iH = 450; |
| 429 |
var optWin = "status=yes,scrollbars=yes,resizable=yes,toolbar=no,location=yes,height="+iH+",width="+iW; |
| 430 |
var loc = "/cgi-bin/koha/opac-addbybiblionumber.pl?biblionumber="+items; |
| 431 |
var shelf = open(loc, "shelf", optWin); |
| 428 |
} else { |
432 |
} else { |
| 429 |
alert(MSG_NO_RECORD_SELECTED); |
433 |
alert(MSG_NO_RECORD_SELECTED); |
| 430 |
} |
434 |
} |
| 431 |
- |
|
|