From 7be2a22c0274b854481b9bdd874c3c1eecceb64b Mon Sep 17 00:00:00 2001 From: Chris Hallberg <crhallberg@gmail.com> Date: Fri, 3 Jun 2016 08:54:43 -0400 Subject: [PATCH] moreFacets/lessFacets should swallow events. --- themes/bootstrap3/js/common.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/themes/bootstrap3/js/common.js b/themes/bootstrap3/js/common.js index e15c1bc27e7..ea537828641 100644 --- a/themes/bootstrap3/js/common.js +++ b/themes/bootstrap3/js/common.js @@ -103,10 +103,12 @@ function deparam(url) { function moreFacets(id) { $('.'+id).removeClass('hidden'); $('#more-'+id).addClass('hidden'); + return false; } function lessFacets(id) { $('.'+id).addClass('hidden'); $('#more-'+id).removeClass('hidden'); + return false; } // Phone number validation -- GitLab