Skip to content
Snippets Groups Projects
Commit b890aff1 authored by Demian Katz's avatar Demian Katz
Browse files

Added missing radix.

parent c55ddfb9
No related merge requests found
...@@ -131,7 +131,7 @@ VuFind.register('lightbox_facets', function LightboxFacets() { ...@@ -131,7 +131,7 @@ VuFind.register('lightbox_facets', function LightboxFacets() {
lightboxFacetSorting(); lightboxFacetSorting();
$('.js-facet-next-page').click(function facetLightboxMore() { $('.js-facet-next-page').click(function facetLightboxMore() {
var button = $(this); var button = $(this);
var page = parseInt(this.dataset.page); var page = parseInt(this.dataset.page, 10);
if (button.attr('disabled')) { if (button.attr('disabled')) {
return false; return false;
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment