View | Details | Raw Unified | Return to bug 21078
Collapse All | Expand All

(-)a/koha-tmpl/opac-tmpl/bootstrap/js/overdrive.js (-2 / +2 lines)
Lines 86-92 KOHA.OverDriveCirculation = new function() { Link Here
86
    $( document ).ready(function() {
86
    $( document ).ready(function() {
87
        var p = window.opener;
87
        var p = window.opener;
88
        if (p) {
88
        if (p) {
89
            cb = p.refresh_overdrive_account_details;
89
            try { cb = p.refresh_overdrive_account_details;}
90
            catch(err){ return; } //Catch error if opener is not accessible
90
            if (cb) {
91
            if (cb) {
91
                cb();
92
                cb();
92
            } else {
93
            } else {
93
- 

Return to bug 21078