From 27846ecbdba6d440155e684f3b0e257d328139ba Mon Sep 17 00:00:00 2001 From: Georgy Litvinov Date: Fri, 24 Feb 2023 09:37:56 +0100 Subject: [PATCH] Remove old hack that produces 500 error --- webapp/src/main/webapp/js/menupage/browseByVClass.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/webapp/src/main/webapp/js/menupage/browseByVClass.js b/webapp/src/main/webapp/js/menupage/browseByVClass.js index 940810bac..cdb68aa7a 100644 --- a/webapp/src/main/webapp/js/menupage/browseByVClass.js +++ b/webapp/src/main/webapp/js/menupage/browseByVClass.js @@ -53,8 +53,7 @@ var browseByVClass = { // if the user navigates with the back button this.browseVClasses.children('li').each( function() { $(this).find('a').click(function () { - // the extra space is needed to prevent odd scrolling behavior - location.hash = $(this).attr('data-uri') + ' '; + location.hash = $(this).attr('data-uri'); }); });