@@ -, +, @@ devices - Perform a search. - On the search results page you should see a "Refine your search" link at the top of the results. Clicking it should expand and collapse the facets menu. - Log in to the OPAC. - On the "Your summary" page there should be a "Your account menu" link at the top of the main part of the page. Clicking it should expand and collapse the account menu. - Verify that these menus display correctly when you widen and narrow the browser window. --- koha-tmpl/opac-tmpl/bootstrap/js/script.js | 6 ------ 1 file changed, 6 deletions(-) --- a/koha-tmpl/opac-tmpl/bootstrap/js/script.js +++ a/koha-tmpl/opac-tmpl/bootstrap/js/script.js @@ -62,12 +62,6 @@ $(document).ready(function(){ } }); - $(".menu-collapse-toggle").on("click",function(e){ - e.preventDefault(); - $(this).toggleClass("menu-open"); - $(".menu-collapse").toggle(); - }); - $(".loginModal-trigger").on("click",function(e){ e.preventDefault(); $("#loginModal").modal("show"); --