Merge pull request #371 from litvinovg/vclass_browsing_error_fix

Remove old hack that leads to 500 error
This commit is contained in:
Dragan Ivanovic 2023-02-28 15:28:37 +01:00 committed by GitHub
commit 0c8b02a630
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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