From c49235db9a4587a83e77092c82d92bd9df479fa8 Mon Sep 17 00:00:00 2001 From: soufiane Date: Thu, 12 Feb 2026 18:30:29 +0100 Subject: [PATCH] wait #7988 --- js/libs/fluidbook/fluidbook.burger.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/libs/fluidbook/fluidbook.burger.js b/js/libs/fluidbook/fluidbook.burger.js index 180d8c23..2fcad17c 100644 --- a/js/libs/fluidbook/fluidbook.burger.js +++ b/js/libs/fluidbook/fluidbook.burger.js @@ -66,7 +66,8 @@ FluidbookBurger.prototype = { $("#menu").append(''); // Add button for search float in mobile - if(!this.nav.horizontalOnly && this.fluidbook.search.isSearchfloatActive) { + console.log("this.fluidbook.search.isSearchfloatActive",this.fluidbook.search.isSearchfloatActive) + if(this.fluidbook.search.isSearchfloatActive) { $("#menuList ul").prepend('
  • '+ getSpriteIcon('nav-search') + '' +this.fluidbook.l10n.__('Search')+ '
  • ') } -- 2.39.5