Bug 22602: Fix OverDrive circulation when coming from another site
On bug 21078 we caught an error and returned, this makes us skip some variable setting that we need. This patch moves that code into its own function. To test: 0 - Have OverDrive circulation setup and working 1 - Place a link to your kohadev installation on another site 2 - Follow that link to the opac 3 - Note all items show as 'Place hold' even if available copies 4 - Apply patch 5 - Repeat 1&2 6 - Note the items availability shows correctly Signed-off-by: Elizabeth Quinn <EQuinn@chplnj.org> Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
parent
fa97bc90df
commit
4b642386d8
1 changed files with 10 additions and 7 deletions
|
@ -85,6 +85,16 @@ KOHA.OverDriveCirculation = new function() {
|
|||
}
|
||||
|
||||
var checkout_popup = null;
|
||||
$( document ).ready(function() {
|
||||
checkout_popup = $("#overdrive-checkout");
|
||||
$("#overdrive-login-form").submit(function(e){
|
||||
e.preventDefault();
|
||||
$("#overdrive-login").modal('hide');
|
||||
var ODpassword = $("input[name='ODpassword']").val();
|
||||
login( ODpassword );
|
||||
});
|
||||
});
|
||||
|
||||
$( document ).ready(function() {
|
||||
var p = window.opener;
|
||||
if (p) {
|
||||
|
@ -97,13 +107,6 @@ KOHA.OverDriveCirculation = new function() {
|
|||
}
|
||||
window.close();
|
||||
}
|
||||
checkout_popup = $("#overdrive-checkout");
|
||||
$("#overdrive-login-form").submit(function(e){
|
||||
e.preventDefault();
|
||||
$("#overdrive-login").modal('hide');
|
||||
var ODpassword = $("input[name='ODpassword']").val();
|
||||
login( ODpassword );
|
||||
});
|
||||
});
|
||||
|
||||
function display_account (container, data) {
|
||||
|
|
Loading…
Reference in a new issue