diff --git a/functions.js b/functions.js index 93592b1bb..1e28f1392 100644 --- a/functions.js +++ b/functions.js @@ -1288,15 +1288,19 @@ function closeErrorBox() { function closeInfoBox(cleanup) { - if (Element.visible("infoBoxShadow")) { - Element.hide("dialog_overlay"); - Element.hide("infoBoxShadow"); - - if (cleanup) $("infoBoxShadow").innerHTML = " "; - + try { enableHotkeys(); - } + if (Element.visible("infoBoxShadow")) { + Element.hide("dialog_overlay"); + Element.hide("infoBoxShadow"); + + if (cleanup) $("infoBoxShadow").innerHTML = " "; + } + } catch (e) { + exception_error("closeInfoBox", e); + } + return false; }