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

(-)a/koha-tmpl/intranet-tmpl/js/browser.js (-2 / +1 lines)
Lines 111-117 KOHA.browser = function (searchid, biblionumber) { Link Here
111
                        ev.preventDefault();
111
                        ev.preventDefault();
112
                        browseRecords(1);
112
                        browseRecords(1);
113
                    });
113
                    });
114
                    $('a[href*="biblionumber="]').click(function (ev) {
114
                    $('a[href*="biblionumber="]').not('a[target="_blank"]').click(function (ev) {
115
                        ev.preventDefault();
115
                        ev.preventDefault();
116
                        window.location = $(this).attr('href') + '&searchid=' + me.searchid;
116
                        window.location = $(this).attr('href') + '&searchid=' + me.searchid;
117
                    });
117
                    });
118
- 

Return to bug 11937