From 457217cdaf80cd49bb506a258d5241113a160ced Mon Sep 17 00:00:00 2001 From: Stephen Cameron Date: Mon, 27 Mar 2017 17:58:19 +0200 Subject: [PATCH] Fix #1180 @1.75 --- js/libs/fluidbook/fluidbook.help.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/js/libs/fluidbook/fluidbook.help.js b/js/libs/fluidbook/fluidbook.help.js index 4ac4ac9f..8ee9f853 100644 --- a/js/libs/fluidbook/fluidbook.help.js +++ b/js/libs/fluidbook/fluidbook.help.js @@ -118,6 +118,11 @@ FluidbookHelp.prototype = { return false; }); } + + // Click handler on main helpView div to hide it + $this.view.click(function() { + $this.hide(); + }); }, isVisible: function() { return this.view.is(":visible"); -- 2.39.5