Lines 3-13
Link Here
|
3 |
$(document).ready(function(){ |
3 |
$(document).ready(function(){ |
4 |
$("#clear").on("click",function(e){ |
4 |
$("#clear").on("click",function(e){ |
5 |
e.preventDefault(); |
5 |
e.preventDefault(); |
6 |
finderjumpfull('blinddetail-biblio-search.pl?authid=0&index=' + index ); |
6 |
finderjump('blinddetail-biblio-search.pl?authid=0&index=' + index ); |
7 |
}); |
7 |
}); |
8 |
$("#createnew").on("click",function(e){ |
8 |
$("#createnew").on("click",function(e){ |
9 |
e.preventDefault(); |
9 |
e.preventDefault(); |
10 |
finderjumpfull('authorities.pl?index=' + index + '&authtypecode=' + authtypecode ); |
10 |
finderjump('authorities.pl?index=' + index + '&authtypecode=' + authtypecode, 'full' ); |
11 |
}); |
11 |
}); |
12 |
// marclist |
12 |
// marclist |
13 |
$( "#value_any" ).autocomplete({ |
13 |
$( "#value_any" ).autocomplete({ |
Lines 95-100
$(document).ready(function(){
Link Here
|
95 |
}); |
95 |
}); |
96 |
}); |
96 |
}); |
97 |
|
97 |
|
98 |
function finderjumpfull(page){ |
98 |
function finderjump(page, full){ |
99 |
window.open(page,'','width=100,height=100,resizable=yes,toolbar=false,scrollbars=yes,top'); |
99 |
var window_size = ''; |
|
|
100 |
if( full != "full"){ |
101 |
window_size = 'width=100,height=100,'; |
102 |
} |
103 |
window.open(page,'', window_size + 'resizable=yes,toolbar=false,scrollbars=yes,top'); |
100 |
} |
104 |
} |
101 |
- |
|
|