Lines 452-458
Link Here
|
452 |
<div id="searchresults"> |
452 |
<div id="searchresults"> |
453 |
[% INCLUDE 'page-numbers.inc' %] |
453 |
[% INCLUDE 'page-numbers.inc' %] |
454 |
[% IF Koha.Preference('FilterSearchResultsByLoggedInBranch') %] |
454 |
[% IF Koha.Preference('FilterSearchResultsByLoggedInBranch') %] |
455 |
<button href="#" id="toggleitems" class="btn btn-primary btn-xs" style="float: right;">Show local items only</button> |
455 |
<button href="#" id="toggleitems" class="btn btn-primary btn-xs show-local-items" style="float: right;">Show local items only</button> |
456 |
[% END %] |
456 |
[% END %] |
457 |
<form action="/cgi-bin/koha/catalogue/search.pl" method="get" name="bookbag_form" id="bookbag_form"> |
457 |
<form action="/cgi-bin/koha/catalogue/search.pl" method="get" name="bookbag_form" id="bookbag_form"> |
458 |
[% IF ( searchdesc ) %] |
458 |
[% IF ( searchdesc ) %] |
Lines 833-840
Link Here
|
833 |
var userbranch = "[% userbranch | html %]"; |
833 |
var userbranch = "[% userbranch | html %]"; |
834 |
|
834 |
|
835 |
[% IF Koha.Preference('FilterSearchResultsByLoggedInBranch') %] |
835 |
[% IF Koha.Preference('FilterSearchResultsByLoggedInBranch') %] |
|
|
836 |
$(document).ready( function() { |
837 |
if ( Cookies.get("show_local_items") == 'local' ) { |
838 |
$('#toggleitems').click(); |
839 |
} |
840 |
}); |
836 |
$('#toggleitems').click( function() { |
841 |
$('#toggleitems').click( function() { |
837 |
$('#toggleitems').text() === 'Show local items only' ? $('#toggleitems').text("Show items in all libraries") : $('#toggleitems').text("Show local items only"); |
842 |
$('#toggleitems').text($('#toggleitems').text() === 'Show local items only' ? 'Show items in all libraries' : 'Show local items only'); |
838 |
$('.branch_specific').toggle(); |
843 |
$('.branch_specific').toggle(); |
839 |
$('.all').toggle(); |
844 |
$('.all').toggle(); |
840 |
$('ul[class*="_loop_items"] li').each( function() { |
845 |
$('ul[class*="_loop_items"] li').each( function() { |
Lines 842-847
Link Here
|
842 |
$(this).toggle(); |
847 |
$(this).toggle(); |
843 |
} |
848 |
} |
844 |
}); |
849 |
}); |
|
|
850 |
|
851 |
$(this).toggleClass('show-local-items show-all-items'); |
852 |
if ($(this).hasClass('show-local-items')) { |
853 |
Cookies.set("show_local_items", 'all', { path: '/', sameSite: 'Lax' }); |
854 |
} else { |
855 |
Cookies.set("show_local_items", 'local', { path: '/', sameSite: 'Lax' }); |
856 |
} |
845 |
}); |
857 |
}); |
846 |
[% END %] |
858 |
[% END %] |
847 |
[% IF SEARCH_RESULTS %] |
859 |
[% IF SEARCH_RESULTS %] |
848 |
- |
|
|