From 42d81384a67a0325082c92656078eb60a4c67fe8 Mon Sep 17 00:00:00 2001 From: Chris Hallberg <crhallberg@gmail.com> Date: Tue, 28 Jun 2016 10:41:09 -0400 Subject: [PATCH] eslint --- themes/bootstrap3/js/facets.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/bootstrap3/js/facets.js b/themes/bootstrap3/js/facets.js index 949b1d75949..d9629e488cc 100644 --- a/themes/bootstrap3/js/facets.js +++ b/themes/bootstrap3/js/facets.js @@ -142,7 +142,7 @@ VuFind.register('lightbox_facets', function LightboxFacets() { button.before(list); if (list.length && htmlDiv.find('.js-facet-next-page').length) { button.attr('data-page', page + 1); - button.attr('href', button.attr('href').replace(/facetpage=\d+/, 'facetpage='+(page+1))); + button.attr('href', button.attr('href').replace(/facetpage=\d+/, 'facetpage=' + (page + 1))); button.text(VuFind.translate('more') + ' ...'); button.removeAttr('disabled'); } else { -- GitLab