|
Lines 65-71
KOHA.browser = function (searchid, biblionumber) {
Link Here
|
| 65 |
sessionStorage.setItem('searches', JSON.stringify(searches)); |
65 |
sessionStorage.setItem('searches', JSON.stringify(searches)); |
| 66 |
$(document).ready(function () { |
66 |
$(document).ready(function () { |
| 67 |
//FIXME It's not a good idea to modify the click events |
67 |
//FIXME It's not a good idea to modify the click events |
| 68 |
$('#searchresults table tr a[href*="/detail.pl"]').on('click', function (ev) { |
68 |
$('#searchresults table tr a[href*="/detail.pl"]').on('click auxclick', function (ev) { |
| 69 |
ev.preventDefault(); |
69 |
ev.preventDefault(); |
| 70 |
}); |
70 |
}); |
| 71 |
$('#searchresults table tr a[href*="/detail.pl"]').on('mousedown', function (ev) { |
71 |
$('#searchresults table tr a[href*="/detail.pl"]').on('mousedown', function (ev) { |
| 72 |
- |
|
|