Lines 249-255
Link Here
|
249 |
var Sticky; |
249 |
var Sticky; |
250 |
var singleBranchMode = '[% singleBranchMode | html %]'; |
250 |
var singleBranchMode = '[% singleBranchMode | html %]'; |
251 |
let logged_in_library_id = "[% Branches.GetLoggedInBranchcode | html %]"; |
251 |
let logged_in_library_id = "[% Branches.GetLoggedInBranchcode | html %]"; |
252 |
let defer_loading = [% defer_loading ? 1 : 0 %]; |
252 |
let defer_loading = [% defer_loading | html ? 1 : 0 %]; |
253 |
|
253 |
|
254 |
/* popstate event triggered by forward and back button. Need to refresh search */ |
254 |
/* popstate event triggered by forward and back button. Need to refresh search */ |
255 |
window.addEventListener('popstate', (event) => { |
255 |
window.addEventListener('popstate', (event) => { |
Lines 618-624
Link Here
|
618 |
"pageLength": [% Koha.Preference('PatronsPerPage') | html %], |
618 |
"pageLength": [% Koha.Preference('PatronsPerPage') | html %], |
619 |
[% IF sticky_header %] |
619 |
[% IF sticky_header %] |
620 |
"initComplete": function(settings, json) { |
620 |
"initComplete": function(settings, json) { |
621 |
$("#[% sticky_header %]").show(); |
621 |
$("#[% sticky_header | html %]").show(); |
622 |
Sticky = $("#[% sticky_header | html %]"); |
622 |
Sticky = $("#[% sticky_header | html %]"); |
623 |
Sticky.hcSticky({ |
623 |
Sticky.hcSticky({ |
624 |
stickTo: "#[% sticky_to | html %]", |
624 |
stickTo: "#[% sticky_to | html %]", |
625 |
- |
|
|