From b055d2c96575eb8685ab8408630c64f75eeed16f Mon Sep 17 00:00:00 2001 From: Andreas Roussos Date: Wed, 24 Jul 2024 20:23:55 +0000 Subject: [PATCH] Bug 33668: (follow-up) Adjust Font Awesome icon classes Removed the fa-sharp class as it's only available with the Font Awesome Pro icon set. Removed fa-regular in favour of fa-solid, as the latter is used exclusively in the Koha codebase. --- koha-tmpl/opac-tmpl/bootstrap/js/global.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/js/global.js b/koha-tmpl/opac-tmpl/bootstrap/js/global.js index db2cb7b69a..4e501773b1 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/js/global.js +++ b/koha-tmpl/opac-tmpl/bootstrap/js/global.js @@ -251,7 +251,7 @@ var facetHandler = function (e) { function setPlaceholder(){ let search_placeholder = $("#masthead_search option:selected").data("placeholder"); - let clearButton = $(''); + let clearButton = $(''); $("#translControl1").attr("placeholder", search_placeholder).after(clearButton); -- 2.39.2