Remove old hack that produces 500 error

This commit is contained in:
Georgy Litvinov 2023-02-24 09:37:56 +01:00
parent 15cb4d7467
commit 27846ecbdb

View file

@ -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');
});
});